作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有两个轮子,一个向左滚动,一个向右滚动,我想用jquery让轮子一个一个滚动并循环,我可以用jquery写一个轮子,但我不知道怎么写它们在 jquery 动画队列中。
html:
<div id="wheel1">
<p>Running left</p>
</div>
<div id = "wheel2">
<p>Running right</p>
</div>
CSS:
#wheel1{
width: 150px;
height: 150px;
background-color: pink;
border:5px dotted purple;
border-radius: 80px;
float: right;
/*animation: myrotate2 3s ease-out forwards;*/
}
.roll-left{
animation: roll-left 2s ease-out forwards;
}
@keyframes roll-left{
0% {}
50% {transform: translate(-1000px) rotate(-720deg)}
100% {}
}
#wheel2{
width: 150px;
height: 150px;
background-color: pink;
border:5px dotted purple;
border-radius: 80px;
/*animation: myrotate1 3s ease forwards;*/
}
.roll-right{
animation: roll-right 2s ease forwards;
}
@keyframes roll-right{
0% {}
50% {transform: translate(1000px) rotate(720deg)}
100% {}
}
p{
font-size: 25px;
color: white;
margin: 30px;
}
jquery:
setInterval(function(){
$("#wheel1").addClass('roll-left').one('animationed',function(){
$("#wheel1").removeClass('roll-left');
});
},2000);
最佳答案
要循环动画,您应该使用animation-iteration-count
animation-iteration-count: infinite;
你需要调整你的动画
#wheel1{
width: 150px;
height: 150px;
background-color: pink;
border:5px dotted purple;
border-radius: 80px;
float: right;
/*animation: myrotate2 3s ease-out forwards;*/
}
.roll-left{
animation: roll-left 2s ease-out forwards;
animation-iteration-count: infinite;
}
@keyframes roll-left{
0% {}
25% {transform: translate(-1000px) rotate(-720deg)}
50% {transform: translate(0) rotate(0)}/*wait for the secon animation to start*/
}
#wheel2{
width: 150px;
height: 150px;
background-color: pink;
border:5px dotted purple;
border-radius: 80px;
/*animation: myrotate1 3s ease forwards;*/
}
.roll-right{
animation: roll-right 2s ease forwards;
animation-iteration-count: infinite;
}
@keyframes roll-right{
0%{}
50% {transform: translate(0) rotate(0)}/*wait for the first animation to stop*/
75% {transform: translate(1000px) rotate(720deg)}
100% {}
}
p{
font-size: 25px;
color: white;
margin: 30px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div id="wheel1" class="roll-left">
<p>Running left</p>
</div>
<div id = "wheel2" class="roll-right">
<p>Running right</p>
</div>
关于jquery - css动画,只想使用setInterval使动画多次工作,但它只工作一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43750701/
我目前在我的 master 分支上。我需要 CSS 方面的帮助,但不幸的是我的网站受身份验证保护。这使得其他人很难来我的站点进行调试。我计划开始一个新的分支,fixing_css,第一次提交删除所有身
我是一名优秀的程序员,十分优秀!