以下是 仿QQ抖动效果代码 的示例演示效果:
部分效果截图:
HTML代码(index.html):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="keywords" content="JS代码,图片特效,JS广告代码,JS特效代码" />
<meta name="description" content="此代码内容为仿QQ抖动效果代码,属于站长常用代码" />
<title>仿QQ抖动效果代码</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/lrtk.js"></script>
</head>
<body>
<!-- 代码 开始 -->
<div id='box'><img src="images/lrtk.png" width='400' /></div>
<!-- 代码 结束 -->
</body>
</html>
JS代码(lrtk.js):
/*******************************************************************本公共函数由Jason.leung编写整理,未经许可,任何企业或个人不得用于商业用途!违者必究!Email,jason.leung58@icloud.com********************************************************************/
function convertStyle(obj){
if(obj.length){
for (var i=0;
i<obj.length;
i++){
obj[i].style.left=obj[i].offsetLeft+'px';
obj[i].style.top=obj[i].offsetTop+'px';
}
for (var i=0;
i<obj.length;
i++){
obj[i].style.position='absolute';
obj[i].style.margin=0;
}
}
else{
obj.style.left=obj.offsetLeft+'px';
obj.style.top=obj.offsetTop+'px';
obj.style.position='absolute';
obj.style.margin=0;
}
}
function shake(obj){
var posData=[obj.offsetLeft,obj.offsetTop];
obj.onclick=function(){
var i=0;
clearInterval(timer);
var timer=setInterval(function(){
i++;
obj.style.left=posData[0]+((i%2)>0?-2:2)+'px';
obj.style.top=posData[1]+((i%2)>0?-2:2)+'px';
if(i>=30){
clearInterval(timer);
obj.style.left=posData[0]+'px';
obj.style.top=posData[1]+'px';
}
}
,30);
}
}
/* Design by Jason.leung,QQ,147430218,新浪微博,@切片面包 */
window.onload=function(){
var oBox=document.getElementById('box');
convertStyle(oBox);
shake(oBox);
}
CSS代码(style.css):
/* Design by Jason.leung,QQ,147430218,新浪微博,@切片面包 */
*{margin:0px;padding:0px;}
#box{width:400px;height:436px;margin:50px auto;}