我希望箭头首先在1.5秒内淡入我的网站,然后在3秒后我希望它进行一些弹跳动作以指示滚动移动。我想每3秒钟重复一次跳动动画,但仅淡入一次(当我重新加载页面时)。
现在我的代码:
arrow {
position: absolute;
width: 100px;
top: 85vh;
animation: arrowInn 1.5s ease-in forwards, arrowBounce 1s 2s ease-in;
}
@keyframes arrowInn{
from{
opacity: 0;
}
to{
opacity: 100%;
}
}
@keyframes arrowBounce {
0% { bottom: 0px; }
50% { bottom: 10px; }
100% { bottom: 0px; }
}
答案 0 :(得分:0)
您的代码已经可以使用了,您只是忘记在第二个动画上添加infinite
:
div {
position: absolute;
width: 100px;
bottom: 10px;
animation: arrowInn 1.5s ease-in forwards, arrowBounce 1s 2s infinite ease-in;
}
@keyframes arrowInn {
from { opacity: 0; }
to { opacity: 100%; }
}
@keyframes arrowBounce {
0% { bottom: 10px; }
50% { bottom: 0; }
100% { bottom: 10px; }
}
<div>⬇️</div>
此外,如果要使其从bottom
反弹,则必须在元素上设置bottom
属性而不是top
。我反转了您的arrowBounce
动画,使其从10px
而不是0
开始,但是这部分取决于您。