翼度科技»论坛 编程开发 JavaScript 查看内容

记录--手摸手带你撸一个拖拽效果

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
这里给大家分享我在网上总结出来的一些知识,希望对大家有所帮助



前言

最近看见一个拖拽效果的视频(抖音:艾恩小灰灰),看好多人评论说跟着敲也没效果,还有就是作者也不回复大家提出的一些疑问,本着知其然必要知其所以然的心理,我把实现效果研究了一遍,并且了解了其实现原理,这里给大家复盘其原理,学到就是赚到
准备

这里我们要用到字体图标,所以我们从iconfont阿里图标库直接引入

  • 找到需要的图标,添加进项目
  • 找到图标所在的项目,点击查看链接
  • 复制地址,或者点击地址复制跳转后地址链接
  1. [/code][size=5]创建所需要结构[/size]
  2. 把我们需要结构先写出来
  3. [list]
  4. [*]draggable:让盒子可以进行拖拽
  5. [*]--color让盒子背景色根据--color显示(与下方css样式相联系)
  6. [/list][code]
  7.         
  8.             <i ></i>
  9.             <span >双鱼座</span>
  10.         
  11.         
  12.             <i ></i>
  13.             <span >水平座</span>
  14.         
  15.         
  16.             <i ></i>
  17.             <span >摩羯座</span>
  18.         
  19.         
  20.             <i ></i>
  21.             <span >处女座</span>
  22.         
  23.         
  24.             <i ></i>
  25.             <span >狮子座</span>
  26.         
  27.    
复制代码
编写样式

这里直接采用flex对盒子进行排版布局

  • background-color: var(--color);var(--color)是或者自定义属性的颜色
  1. body{
  2.   background-color: #000;
  3. }
  4. .list{
  5.   width: 300px;
  6.   height: 360px;
  7.   /* padding: 20px 0; */
  8.   margin: 100px auto 0;
  9.   display: flex;
  10.   flex-direction: column;
  11.   justify-content: space-around;
  12. }
  13. .list-item{
  14.   width: 100%;
  15.   display: flex;
  16.   align-items: center;
  17.   padding: 0 16px;
  18.   border-radius: 10px;
  19.   /* margin-bottom: 20px; */
  20. background-color: var(--color);
  21. }
  22. .constellation{
  23.   line-height: 2.5em;
  24.   font-size: 20px;
  25.   color: #fff;
  26. }
  27. .list-item-img{
  28.   width: 30px;
  29.   height: 30px;
  30. }
  31. .list-item-title{
  32.   margin-left: 20px;
  33.   color: #fff;
  34. }
  35. // 移动动画class
  36. .list-item.moving{
  37. background-color: transparent;
  38. border: 2px dashed #ccc;
  39. }
复制代码

js编写拖拽效果

首先获取需要用到的元素
  1. // 获取整个list
  2. const list = document.querySelector('.list')
  3. // 获取每一个盒子
  4. const item = document.querySelectorAll('.list-item')
复制代码
开始拖动的时候需要加上移动的类,并且设置移动效果
  1. // 开始拖动
  2.     list.ondragstart = e => {
  3.         source_node = e.target
  4.         recode(item)
  5.         setTimeout(() => {
  6.         // 拖拽时样式
  7.             e.target.classList.add('moving')
  8.         }, 0)
  9.         // 设置拖动效果
  10.         e.dataTransfer.effectAllowed = 'move'
  11.     }
复制代码
拖拽中需要判断是从上往下还是从下往上,根据拖拽元素和放入元素的索引进行比对,从而对拖拽元素进行插入节点操作
注意: 在码上掘金从上往下的时候会出现bug,在浏览器不会,我个人觉得应该是是码上掘金的问题
  1. // 拖拽放入有效目标触发
  2.     list.ondragenter = e => {
  3.         e.preventDefault()
  4.         console.log(e.target.id, list)
  5.         if (e.target === list || e.target === source_node) {
  6.             return false
  7.         }
  8.         const childer = Array.from(list.children)
  9.         const sourceIndex = childer.indexOf(source_node)
  10.         const targetIndex = childer.indexOf(e.target)
  11.         // console.log(sourceIndex, targetIndex)
  12.         if (sourceIndex < targetIndex) {
  13.             // 从下往上拖动
  14.             list.insertBefore(source_node, e.target.nextElementSibling)
  15.         } else {
  16.             // 从上往下拖动
  17.                 list.insertBefore(source_node, e.target)
  18.         }
  19.         // 动画效果函数
  20.         last([e.target, source_node])
  21.     }
复制代码
拖拽结束后把拖拽时的样式移除
  1. // 拖放结束
  2.     list.ondragend = e => {
  3.         e.target.classList.remove('moving')
  4.     }
复制代码
解释方法

这里有好多没有用过或者比较少用的方法,这里给大家解释一下

  • ondragstart:当用户开始拖动一个元素或文本选择时,会触发dragstart事件
  • ondragover:当元素或文本选择被拖到有效的拖放目标上时(每几百毫秒一次),就会触发拖放事件
  • ondragenter:当被拖动的元素或文本选择进入有效的拖放目标时,会触发dragenter事件
  • ondragend: 当拖放操作结束时(通过释放鼠标按钮或点击escape键)触发dragend事件。
  • e.dataTransfer.effectAllowed:用于设置拖放时的效果,常用参数有(move,link,copy)
  • getBoundingClientRect:返回元素对于视口的信息
  • requestAnimationFrame:重绘动画
  • cancelAnimationFrame:用于取消requestAnimationFrame调用请求
所有代码

HTML
  1.   
  2.     <i ></i>
  3.     <span >双鱼座</span>
  4.   
  5.   
  6.     <i ></i>
  7.     <span >水平座</span>
  8.   
  9.   
  10.     <i ></i>
  11.     <span >摩羯座</span>
  12.   
  13.   
  14.     <i ></i>
  15.     <span >处女座</span>
  16.   
  17.   
  18.     <i ></i>
  19.     <span >狮子座</span>
  20.   
复制代码
JS
  1. // 操作dom元素    const list = document.querySelector('.list')    const item = document.querySelectorAll('.list-item')    // 判断当前元素    let source_node    // 开始拖动    list.ondragstart = e => {        source_node = e.target        recode(item)        setTimeout(() => {            e.target.classList.add('moving')        }, 0)        // 设置拖动效果        e.dataTransfer.effectAllowed = 'move'    }    // 拖动在有效目标    list.ondragover = e => {        // 防止默认情况下允许删除        e.preventDefault()    }    // 拖拽放入有效目标触发    list.ondragenter = e => {        e.preventDefault()        console.log(e.target.id, list)        if (e.target === list || e.target === source_node) {            return false        }        const childer = Array.from(list.children)        const sourceIndex = childer.indexOf(source_node)        const targetIndex = childer.indexOf(e.target)        console.log(sourceIndex, targetIndex)        if (sourceIndex < targetIndex) {            // 从下往上拖动            //  console.log(source_node,e.target.nextElementSibling)            //  if()            list.insertBefore(source_node, e.target.nextElementSibling)        } else {            // 从上往下拖动             console.log(e.target,e.target)            if (!e.target==null||source_node==null) {                return            }                list.insertBefore(source_node, e.target)        }        last([e.target, source_node])    }    // 拖放结束
  2.     list.ondragend = e => {
  3.         e.target.classList.remove('moving')
  4.     }    // 重新计算位置    function recode(eleAll) {        // getBoundingClientRect 返回元素对于视口信息        for (let i = 0; i < eleAll.length; i++) {            const {                top,                left            } = eleAll[i].getBoundingClientRect()            eleAll[i]._top = top            eleAll[i]._left = left        }    }    // 添加移动动画效果    function last(eleAll) {        for (let i = 0; i < eleAll.length; i++) {            const dom = eleAll[i]            const {                top,                left            } = dom.getBoundingClientRect()            if (dom._left) {                dom.style.transform = `translate3d(${dom._left-left}px,${dom._top-top}px,0px)`                // 重绘动画                let rafId = requestAnimationFrame(function () {                    dom.style.transition = `transform 0.3s ease-out`                    dom.style.transform = 'none'                })                dom.addEventListener('transitionend', () => {                    dom.style.transition = 'none'                    // 取消requestAnimationFrame调用请求                    cancelAnimationFrame(rafId)                })            }        }    }
复制代码
CSS
  1. body{
  2.   background-color: #000;
  3. }
  4. .list{
  5.   width: 300px;
  6.   height: 360px;
  7.   /* padding: 20px 0; */
  8.   margin: 100px auto 0;
  9.   display: flex;
  10.   flex-direction: column;
  11.   justify-content: space-around;
  12. }
  13. .list-item{
  14.   width: 100%;
  15.   display: flex;
  16.   align-items: center;
  17.   padding: 0 16px;
  18.   border-radius: 10px;
  19.   /* margin-bottom: 20px; */
  20. background-color: var(--color);
  21. }
  22. .constellation{
  23.   line-height: 2.5em;
  24.   font-size: 20px;
  25.   color: #fff;
  26. }
  27. .list-item-img{
  28.   width: 30px;
  29.   height: 30px;
  30. }
  31. .list-item-title{
  32.   margin-left: 20px;
  33.   color: #fff;
  34. }
  35. .list-item.moving{
  36. background-color: transparent;
  37. border: 2px dashed #ccc;
  38. }
复制代码
本文转载于:

https://juejin.cn/post/7171269067729272868

如果对您有所帮助,欢迎您点个关注,我会定时更新技术文档,大家一起讨论学习,一起进步。

 


来源:https://www.cnblogs.com/smileZAZ/p/17176470.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具