gpt4 book ai didi

javascript - 如何旋转然后停止?

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

我有一个 div 开始旋转,但我不确定如何让它停止在一个 Angular 。目前,所有令人高兴的事情都在继续进行。我的问题是如何让它停止在像 96 这样的 Angular 。

<script type="text/javascript">
$(function() {
var $elie = $("#super");
rotate(1);
function rotate(degree) {
$elie.css({ WebkitTransform: 'rotate(' + degree + 'deg)'});
$elie.css({ '-moz-transform': 'rotate(' + degree + 'deg)'});
timer = setTimeout(function() {
rotate(++degree);
},2);
}
});
</script>

最佳答案

要在 96 度停止,试试这个:

if (degree < 96) {
timer = setTimeout(function() {
rotate(++degree);
}, 2);
}

Example fiddle

关于javascript - 如何旋转然后停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13608598/

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