概述
需求如下:
让元素随中心转动当鼠标放上去则停止,鼠标移开,在停止位置继续旋转。
核心代码:
<script type="text/javascript">
$(function(){
var currentAngle = 0;
var rotation = null;
start();
$('#lotteryBtn').rotate({
bind : {
mouseover : function(){
stop();
}, mouseout : function(){
start();
}
}
});
function start(){
console.log("start"+currentAngle);
var angle = parseInt(currentAngle);
rotation = setInterval(function(){
angle +=3;
$('#lotteryBtn').rotate(angle);
}, 50);
}
function stop(){
currentAngle = $('#lotteryBtn').getRotateAngle();
clearInterval(rotation);
rotation = null;
}
});
</script>
下载地址: http://download.csdn.net/detail/huaishuming/8118449
最后
以上就是欣喜棉花糖为你收集整理的jQueryRotate 使用 第一篇的全部内容,希望文章能够帮你解决jQueryRotate 使用 第一篇所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复