87,990
社区成员
发帖
与我相关
我的任务
分享clock3.style.msTransform = 'rotate(' + a + 'deg)';
clock3.style.MozTransform = 'rotate(' + a + 'deg)';
clock3.style.WebkitTransform = 'rotate(' + a + 'deg)';
。。。var a = 0;
var clock3 = document.getElementById('clock3')
setInterval(function(){
clock3.style.MozTransform = 'rotate(' + a + 'deg)';
/*
其他浏览器:
WebkitTransform
msTransform
Transform
MozTransform
OTransform*/
a = (a + 5) % 360;
}, 500);