JS實現(xiàn)仿QQ聊天窗口抖動特效
更新時間:2015年05月10日 09:01:14 投稿:hebedich
本文給大家分享的是類似QQ窗口的抖動效果,只是覺得好玩,沒什么技術含量,推薦給大家,有需要的小伙伴可以參考下。
JS實現(xiàn)仿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 style="margin:10px 200px"> <div> <input type="button" value="~點這里讓我抖抖吧~" onclick="nn.start()" /></div> <div> <input type="button" value="晃暈了,我不抖了!" onclick="nn.stop()" /></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" style='position:relative' src="/UploadPic/2008-9/2008962512241.jpg"> <br /><br /> <button onclick="zd()">振動</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實現(xiàn)的仿QQ空間圖片彈出效果代碼
- js實現(xiàn)仿qq消息的彈出窗效果
- JS實現(xiàn)超簡單的仿QQ折疊菜單效果
- JS實現(xiàn)仿QQ面板的手風琴效果折疊菜單代碼
- js實現(xiàn)帶緩沖效果的仿QQ面板折疊菜單代碼
- 純js實現(xiàn)仿QQ郵箱彈出確認框
- 基于zepto.js實現(xiàn)仿手機QQ空間的大圖查看組件ImageView.js詳解
- javascript仿qq界面的折疊菜單實現(xiàn)代碼
- js設置控件的隱藏與顯示的兩種方法
- js菜單點擊顯示或隱藏效果的簡單實例
- javascript 控制 html元素 顯示/隱藏實現(xiàn)代碼
- JS實現(xiàn)的模仿QQ頭像資料卡顯示與隱藏效果