美文网首页
vue----拖拽小方块

vue----拖拽小方块

作者: 爱祖国 | 来源:发表于2017-03-07 22:17 被阅读0次

    话不多说,直接来实例
    1.html代码如下:
    <div id="box"> <div v-drag class="box1"></div> <div v-drag class="box2"></div> </div>
    2.css样式如下:
    div.box1{width:100px; height:100px; background:red; position:absolute; top:0;left:0; cursor:move;} div.box2{width:100px; height:100px; background:blue; position:absolute; top:0;right:0; cursor:move;}
    3.vue代码如下:
    Vue.directive('drag',function(){ var oDiv=this.el; oDiv.onmousedown=function(ev){ var disX=ev.clientX-oDiv.offsetLeft; var disY=ev.clientY-oDiv.offsetTop; document.onmousemove=function(ev){ var l=ev.clientX-disX; var t=ev.clientY-disY; oDiv.style.left=l+'px'; oDiv.style.top=t+'px'; }; document.onmouseup=function(){ document.onmousemove=document.onmouseup=null; }; } }) window.onload=function(){ var vm=new Vue({ data:{ }, methods:{ } }).$mount('#box');//手动挂载!! };

    相关文章

      网友评论

          本文标题:vue----拖拽小方块

          本文链接:https://www.haomeiwen.com/subject/spjvgttx.html