当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 鼠标图片振动代码

Javascript
实用的JS表单验证提示效果
CSS 直方图布局示例
jquery 动态调整textarea高度
jquery animate 动画效果使用说明
jquery checkbox全选反选效果代码
jquery (show,fadeOut,Animate)简单效果
JavaScript 抽奖效果实现代码 数字跳动版
javascript Math.random()随机数函数
jQuery 加上最后自己的验证
JavaScript 自动分号插入(JavaScript synat:auto semicolon insertion)
兼容多浏览器的iframe自适应高度(ie8 、谷歌浏览器4.0和 firefox3.5.3)
javascript 打印内容方法小结
jQuery toggle()设置CSS样式
javaScript parseInt字符转化为数字函数使用小结
模仿JQuery sortable效果 代码有错但值得看看
javascript 常见的闭包问题的解决办法
在js中单选框和复选框获取值的方式
按键盘方向键翻页跳转的javascript代码(支持ie,firefox)
js 操作table之 移动TR位置 兼容FF 跟 IE
csdn 论坛技术区平均给分功能

Javascript 中的 鼠标图片振动代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-12   浏览: 104 ::
收藏到网摘: n/a

<!--代码开始--!>
<!---YeJun2605.AnyP.cn-//-->
<!---这里只是在图片里加了一点代码进去认真看看--!><P><A title=一切网络资源尽在建站资源情感梦,情感一角欢迎光临! href="http://yejun2605.anyp.cn/" target=_blank><FONT color=#0099ff><FONT size=3><IMG class=shakeimage onmouseover=init(this);rattleimage() style="LEFT: 3px; TOP: 0px" onmouseout=stoprattle(this) height=31 src="http://photoimg2.qq.com/cgi-bin/load_pic?verify=%2B90QvPrpA8dALudY1xuzgA%3D%3D" border=0>
<!--下面的代码在同一页面只要一个就行了--!>
<STYLE>.shakeimage {POSITION: relative}</STYLE>
<SCRIPT language=JavaScript1.2>
<!--
var rector=3
var stopit=0
var a=1
function init(which){
stopit=0
shake=which
shake.style.left=0
shake.style.top=0
}
function rattleimage(){
if ((!document.all&&!document.getElementById)||stopit==1)
return
if (a==1){
shake.style.top=parseInt(shake.style.top)+rector
}
else if (a==2){
shake.style.left=parseInt(shake.style.left)+rector
}
else if (a==3){
shake.style.top=parseInt(shake.style.top)-rector
}
else{
shake.style.left=parseInt(shake.style.left)-rector
}
if (a<4)
a++
else
a=1
setTimeout("rattleimage()",50)
}
function stoprattle(which){
stopit=1
which.style.left=0
which.style.top=0
}
//-->
</SCRIPT>