Skip to content

binnapro/Drag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

拖拽

video

问题

由于移动端存在负滚动, 影响拖拽效果 在拖拽页面禁止页面滚动 退出拖拽页面时再打开页面滚动

//禁止页面滚动
document.addEventListener('touchmove', function (e) {
  e.preventDefault();
}, { passive: false });
// 打开页面滚动
document.addEventListener(
  "touchmove",
  function(e) {
    e.returnValue = true;
  },
  { passive: false }
);

About

🤔移动端touch事件实现拖拽效果

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published