正文

实现网页上的图片任意拖动2007-03-06 09:03:00

【评论】 【打印】 【字体: 】 本文链接:http://blog.pfan.cn/wangsdong/23696.html

分享到:

<style>
<!--
.drag{position:relative;cursor:hand}
-->
</style>
<script language="JavaScript1.2">
<!--

var dragapproved=false
var z,x,y
function move(){
if (event.button==1&&dragapproved){
z.style.pixelLeft=temp1+event.clientX-x
z.style.pixelTop=temp2+event.clientY-y
return false
}
}
function drags(){
if (!document.all)
return
if (event.srcElement.className=="drag"){
dragapproved=true
z=event.srcElement
temp1=z.style.pixelLeft
temp2=z.style.pixelTop
x=event.clientX
y=event.clientY
document.onmousemove=move
}
}
document.onmousedown=drags
document.onmouseup=new Function("dragapproved=false")
//-->
</script>

<img src=0001.jpg width=80 height=80 class="drag"><br><br>
<img src=0002.jpg width=80 height=80 class="drag"><br><br>
<img src=0003.jpg width=80 height=80 class="drag"><br><br>
<img src=0004.jpg width=80 height=80 class="drag">

阅读(4195) | 评论(0)


版权声明:编程爱好者网站为此博客服务提供商,如本文牵涉到版权问题,编程爱好者网站不承担相关责任,如有版权问题请直接与本文作者联系解决。谢谢!

评论

暂无评论
您需要登录后才能评论,请 登录 或者 注册