js抖动
效果
代码
1
2
3
4
5
6
7
8
9
10
11
|
<img src="http://www.qqoq.net/wp-content/uploads/200100.jpg" onMouseover="shake(this,‘onmouseout‘)" >
<script type="text/javascript">
var typ = ["marginTop","marginLeft"],rangeN=10,timeout=20;
function shake(o,end){
var range=Math.floor(Math.random()*rangeN);
var typN=Math.floor(Math.random()*typ.length);
o["style"][typ[typN]]=""+range+"px";
var shakeTimer=setTimeout(function(){shake(o,end)},timeout);
o[end]=function(){clearTimeout(shakeTimer)};
}
</script>
|
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。