這是使用的pullpage插件,第一次循環滾動後,箭頭沒有問題,循環一次,箭頭自動往上移動了
.footer{
width:0.82rem;
height: 0.6rem;
position: fixed;
bottom:1.5rem;
left:3.2rem;
animation:sec1-move 1s linear infinite;
}
@-webkit-keyframes sec1-move {
from{
bottom:1.5rem;
}
to{
bottom:1.35rem;
}
}
你先把 rem單位改成 px及對應的值,然後再試,如果沒有問題,就說明原因是rem的參照物size發生了變化。