Heim > Web-Frontend > HTML-Tutorial > 小代码 html 移动div   图片 文字 任意性_html/css_WEB-ITnose

小代码 html 移动div   图片 文字 任意性_html/css_WEB-ITnose

WBOY
Freigeben: 2016-06-24 11:16:45
Original
892 Leute haben es durchsucht

<Html><Head><title>能用鼠标拖放的图片</title></Head><Body  bgColor="#ffffff" onload="init()">  <SCRIPT language=JavaScript>drag = 0move = 0function 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>
Nach dem Login kopieren

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

有一定使用意义


Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage