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

2019-12-18,,

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 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实现的仿QQ空间图片弹出效果代码
  • js实现仿qq消息的弹出窗效果
  • JS实现超简单的仿QQ折叠菜单效果
  • JS实现仿QQ面板的手风琴效果折叠菜单代码
  • js实现带缓冲效果的仿QQ面板折叠菜单代码
  • 纯js实现仿QQ邮箱弹出确认框
  • 基于zepto.js实现仿手机QQ空间的大图查看组件ImageView.js详解
  • javascript仿qq界面的折叠菜单实现代码
  • js设置控件的隐藏与显示的两种方法
  • js菜单点击显示或隐藏效果的简单实例
  • javascript 控制 html元素 显示/隐藏实现代码
  • JS实现的模仿QQ头像资料卡显示与隐藏效果

《JS实现仿QQ聊天窗口抖动特效.doc》

下载本文的Word格式文档,以方便收藏与打印。