码迷,mamicode.com
首页 > 移动开发 > 详细

小代码 html 移动div   图片 文字 任意性

时间:2016-05-29 01:01:42      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:小代码

<Html>
<Head>
<title>能用鼠标拖放的图片</title>
</Head>
<Body  bgColor="#ffffff" onload="init()">
 
 
<SCRIPT language=JavaScript>


drag = 0
move = 0

function init() {
    window.document.onmousemove = mouseMove
    window.document.onmousedown = mouseDown
    window.document.onmouseup = mouseUp
    window.document.ondragstart = mouseStop
}

function mouseDown() {
    if (drag) {
        clickleft = window.event.x - parseInt(dragObj.style.left)
        clicktop = window.event.y - parseInt(dragObj.style.top)
        dragObj.style.zIndex += 1
        move = 1
    }
}

function mouseStop() {
    window.event.returnValue = false
}

function mouseMove() {
    if (move) {
        dragObj.style.left = window.event.x - clickleft
        dragObj.style.top = window.event.y - clicktop
    }
}

function mouseUp() {
    move = 0
}


</SCRIPT>
<DIV onmouseout=drag=0 onmouseover="dragObj=this; drag=1;" 
style="HEIGHT: 90px; LEFT: 200px; POSITION: absolute; TOP: 50px; WIDTH: 90px;background-color:red"></div>
<DIV onmouseout=drag=0 onmouseover="dragObj=this; drag=1;" 
style="HEIGHT: 90px; LEFT: 200px; POSITION: absolute; TOP: 170px; WIDTH: 90px;background-color:orange"></div>
<DIV onmouseout=drag=0 onmouseover="dragObj=this; drag=1;" 
style="HEIGHT: 90px; LEFT: 200px; POSITION: absolute; TOP: 290px; WIDTH: 90px;background-color:blue"></div>
</Body>
</Html>

当我们 加载图片在div上面的时候 作用就好看见了

有一定使用意义


小代码 html 移动div   图片 文字 任意性

标签:小代码

原文地址:http://wzsts.blog.51cto.com/10251779/1784149

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!