首页 > 语言 > JavaScript > 正文

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

2024-05-06 16:19:47
字体:
来源:转载
供稿:网友

本文给大家分享的是类似QQ窗口的抖动效果,只是觉得好玩,没什么技术含量,推荐给大家,有需要的小伙伴可以参考下。

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

 

 
  1. <html> 
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  4. <title>JavaScript层抖动效果</title> 
  5. <style type="text/css"
  6. #body{text-align:center;} 
  7. #test{width:200px;position:absolute;margin:10px auto;height:100px;border:2px dotted red;text-align:center} 
  8. </style> 
  9. </head> 
  10. <body> 
  11. <div style="margin:10px 200px"
  12. <div> 
  13. <input type="button" value="~点这里让我抖抖吧~" onclick="nn.start()" /></div> 
  14. <div> 
  15. <input type="button" value="晃晕了,我不抖了!" onclick="nn.stop()" /></div> 
  16. <div id="test"
  17. <br> 
  18. <img border="0" src="smiley.gif"></div> 
  19. </div> 
  20. <p> </p> 
  21. <p> </p> 
  22. </body> 
  23. </html> 
  24. <script type="text/javascript"
  25. var m=document.getElementById("test"); 
  26. function SKclass (obj,Rate,speed) { 
  27. var oL=obj.offsetLeft; 
  28. var oT=obj.offsetTop; 
  29. this.stop=null
  30. this.oTime=null
  31. var om=this
  32. this.start=function(){ 
  33. if(parseInt(obj.style.left)==oL-2){ 
  34. obj.style.top=oT+2+"px"
  35. setTimeout(function(){obj.style.left=oL+2+"px"},Rate) 
  36. else
  37. obj.style.top=oT-2+"px"
  38. setTimeout(function(){obj.style.left=oL-2+"px"},Rate) 
  39. this.oTime=setTimeout(function(){om.start()},speed); 
  40. this.stop=function(){ 
  41. clearTimeout(this.oTime); 
  42.  
  43. var nn=new SKclass(m,20,70); 
  44. </script> 
  45. </body> 
  46. </html> 

再来一个更简单的

 

 
  1. <img id="win" style='position:relative' src="/UploadPic/2008-9/2008962512241.jpg"
  2. <br /><br /> 
  3. <button onclick="zd()">振动</button> 
  4. <script > 
  5. function zd(u){  
  6. var a=['top','left'],b=0; 
  7. u=setInterval(function(){ 
  8. document.getElementById('win').style[a[b%2]]=(b++)%4<2?0:4; 
  9. if(b>15){clearInterval(u);b=0} 
  10. },32) 
  11. </script> 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选