作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
http://www.html5rocks.com/en/tutorials/dnd/basics/
在此处的示例中(滚动到底部并尝试最后一个示例),当您将元素拖出并且不将其放在任何地方时,它会被定位回其默认位置,并且有一个动画用于定位到其默认位置( Chrome /Safari)。我想禁用该动画。
webkit 是否有某种特殊属性,可以让我这样做?
最佳答案
在这里找到答案,它适用于我的情况
https://stackoverflow.com/a/51697038/1770586
In order to prevent the animation, you need the drop event to fire. For the drop event to fire, you need to call preventDefault() in the handler for dragover.
document.addEventListener('dragover', function(e) { e.preventDefault() })
关于javascript - 禁用拖放动画 Chrome/Safari,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32206010/
我是一名优秀的程序员,十分优秀!