首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >drag事件

drag事件

作者头像
阿超
发布2022-08-21 13:12:41
发布2022-08-21 13:12:41
3410
举报
文章被收录于专栏:快乐阿超快乐阿超

首先是MDNhttps://developer.mozilla.org/zh-CN/docs/Web/API/HTML_Drag_and_Drop_API

然后是代码:

代码语言:javascript
复制
<!DOCTYPE html>
<html>
    <head>
        <style>
            .drop-container{
                width: 200px;
                height: 200px;
                border: 1px solid red;
                background: #eee;
            }
            
            .drag-ball{
                width:60px;
                height:60px;
                background: red;
                border-radius: 50%;
            }
        </style>
    </head>
    <body>
        
        <div class="drag-ball" draggable="true" ondragstart="dragstart(event)">
        </div>
        
        <div class="drop-container" ondrop="drop(event)" ondragover="dragover(event)" >
        </div>
        
    </body>
    <script>
        function dragstart(e){
            console.log("拖动开始啦",e)
        }
        function dragover(e){
            console.log("拖到了容器中",e)
            // 此处需要阻止默认,否则将不会触发drop事件
            e.preventDefault()
        }
        function drop(e){
            console.log("放到了容器中",e)
        }
    </script>
</html>

我们拖动一下,效果如下:

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-04-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档