手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JS实现仿QQ聊天窗口抖动特效
JS实现仿QQ聊天窗口抖动特效
摘要:JS实现仿QQ聊天窗口抖动特效JavaScript层抖动效果#body{text-align:center;}#test{width:200...

JS实现仿QQ聊天窗口抖动特效

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>JavaScript层抖动效果</title> <style type="text/css"> #body{text-align:center;} #test{width:200px;position:absolute;margin:10px auto;height:100px;border:2px dotted red;text-align:center} </style> </head> <body> <div> <div> <input type="button" value="~点这里让我抖抖吧~" /></div> <div> <input type="button" value="晃晕了,我不抖了!" /></div> <div id="test"> <br> <img border="0" src="smiley.gif"></div> </div> <p></p> <p></p> </body> </html> <script type="text/javascript"> var m=document.getElementById("test"); function SKclass (obj,Rate,speed) { var oL=obj.offsetLeft; var oT=obj.offsetTop; this.stop=null; this.oTime=null; var om=this; this.start=function(){ if(parseInt(obj.style.left)==oL-2){ obj.style.top=oT+2+"px"; setTimeout(function(){obj.style.left=oL+2+"px"},Rate) } else{ obj.style.top=oT-2+"px"; setTimeout(function(){obj.style.left=oL-2+"px"},Rate) } this.oTime=setTimeout(function(){om.start()},speed); } this.stop=function(){ clearTimeout(this.oTime); } } var nn=new SKclass(m,20,70); </script> </body> </html>

再来一个更简单的

<img id="win" src="http://www.jb51.netUploadPic/2008-9/2008962512241.jpg"> <br /><br /> <button>振动</button> <script > function zd(u){ var a=['top','left'],b=0; u=setInterval(function(){ document.getElementById('win').style[a[b%2]]=(b++)%4<2?0:4; if(b>15){clearInterval(u);b=0} },32) } </script>

以上所述就是本文的全部内容了,希望大家能够喜欢。

【JS实现仿QQ聊天窗口抖动特效】相关文章:

JS显示日历和天气的方法

JavaScript实现鼠标滑过处生成气泡的方法

JS+CSS实现的拖动分页效果实例

JS实现简洁、全兼容的拖动层实例

js实现鼠标经过表格行变色的方法

jQuery实现延迟跳转的方法

JQuery中DOM实现事件移除的方法

JavaScript实现Flash炫光波动特效

javascript实现树形菜单的方法

JavaScript每天定时更换皮肤样式的方法

精品推荐
分类导航