好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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

   能用鼠标拖放的图片      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} 

查看更多关于小代码html移动div 图片文字任意性_html/css_WEB-ITnose的详细内容...

  阅读:46次