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

Javascript
js操作ajax返回的json的注意问题!
javascript document.compatMode兼容性
jquery 锁定弹出层实现代码
Jquery+CSS 创建流动导航菜单 Fluid Navigation
js下用层来实现select的title提示属性
JSON 学习之JSON in JavaScript详细使用说明
jquery实现的超出屏幕时把固定层变为定位层的代码
jQuery 性能优化手册 推荐
javascript Firefox与IE 替换节点的方法
ext combox 下拉框不出现自动提示,自动选中的解决方法
json-lib出现There is a cycle in the hierarchy解决办法
判断控件是否已加载完成的代码
javascript for循环设法提高性能
js 表格拖拽效果实例代码 (IE only)
javascript 命名规则 变量命名规则
js 面向对象的技术创建高级 Web 应用程序
User agent字符串将成为用户真正的隐私问题
JS教程:JavaScript全半角转换
JS教程:Chrome对数组的sort方法优化
WEBJX收集非常有用的免费的Javascript开发工具

Javascript 中的 鼠标图片振动代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-12   浏览: 70 ::
收藏到网摘: 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>