Vue.js是一款流行的JavaScript框架,用于构建用户界面。其中一个常见的需求是在Vue中实现拖拽功能,让用户可以通过拖拽元素来进行交互。今天,我们就来学习如何在Vue中实现这一功能。
首先,我们需要明白拖拽功能的基本原理:监听鼠标事件、实时更新拖拽元素的位置,最后在合适的时机停止拖拽并更新元素位置。在Vue中,我们可以通过绑定相关事件来实现这一功能。
效果展示
代码展示
<!DOCTYPE HTML>
<html><head><title>拖放示例-文本</title>
</head>
<style>
.src {display: flex;
}.dropabled {flex: 1;
}.txt {color: green;
}.img {width: 100px;height: 100px;border: 1px solid gray;
}.target {width: 200px;height: 200px;line-height: 200px;text-align: center;border: 1px solid gray;color: red;
}
</style><body><div class="src"><div class="dragabled"><div class="txt" id="txt">所有的图片都可拖拽。<p draggable="true"><img class="img" id="tupian1" src="1670483208231593.jpg" alt="图片1" /><img class="img" id="tupian2" src="R-C.jfif" alt="图片2" /></p> </div></div><div id='target' class="dropabled target">拖到这</div></div><script>var dragSrc = document.getElementById('txt')var target = document.getElementById('target')dragSrc.ondragstart = handle_startdragSrc.ondrag = handle_dragdragSrc.ondragend = handle_endfunction handle_start(e) {console.log('拖拽1')}function handle_drag() {console.log('拖拽2')}function handle_end() {console.log('拖拽2')console.log('拖拽2')}target.ondragenter = handle_entertarget.ondragover = handle_overtarget.ondragleave = handle_leavetarget.ondrop = handle_dropfunction handle_enter(e) {console.log('拖拽2')// 阻止浏览器默认行为e.preventDefault()}function handle_over(e) {console.log('拖拽2')// 阻止浏览器默认行为e.preventDefault()}function handle_leave(e) {console.log('拖拽2')// 阻止浏览器默认行为// e.preventDefault()}function handle_drop(e) {console.log('拖拽')var t = Date.now()target.innerHTML = ''target.append(t + '-拖拽')e.preventDefault()}</script>
</body></html>