gpt4 book ai didi

javascript - 使用javascript制作 Sprite 动画(每5秒)

转载 作者:行者123 更新时间:2023-11-30 16:03:29 25 4
gpt4 key购买 nike

我想使用 js 让我的动画每 5 秒运行一次

这是我的html代码

<div id="aa"></div>

这是我的CSS代码

    #aa{
width: 167px;
height: 169px;
background-image: url("sprite.png");
/*animation: play .2s steps(6) ;*/
}
@keyframes play {
from { background-position: 0px; }
to { background-position: -1002px; }
}

jsfiddle

最佳答案

您可以在类中播放动画,然后每 5 秒添加和删除元素的类。

setInterval(function(){
$("div").addClass("play");

setTimeout(function(){
$("div").removeClass("play");
}, 1000);
}, 5000);
div {
width: 100px;
height: 100px;
background: green;
}

.play {
animation: play 1s;
}

@keyframes play {
0% { margin-left: 0px; }
50% { margin-left: 200px; }
100% { margin-left: 0px; }
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div></div>

关于javascript - 使用javascript制作 Sprite 动画(每5秒),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37363818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com