【发布时间】:2018-04-21 05:37:30
【问题描述】:
什么是淡入的简单方法,按住几秒钟,然后淡出。这里的代码很好地淡入淡出,只是不知道如何保存。
HTML
<div class="arrow_case"></div>
CSS
.arrow_case {
width: 100%;
height: 20vh;
opacity: 0;
animation-delay: 1s;
-webkit-animation: arrowInOut 4s linear forwards;
animation: arrowInOut 4s linear forwards;
}
@-webkit-keyframes arrowInOut {
0%,100% {opacity: 0;}
50% {opacity: 1;}
}
@keyframes arrowInOut {
0%,100% {opacity: 0;}
50% {opacity: 1;}
}
还想在启动前延迟几秒。
谢谢!
【问题讨论】:
标签: html css css-animations keyframe