作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码,可以使元素在长按后可拖动:
$(document).on('touchstart mousedown','.menu-item', function () {
console.log('mousedown');
var self = this;
t = setTimeout(function () {
$(self).addClass('draggable');
console.log('draggable');
$(self).draggable();
}, 800);
});
从技术上讲,它是可行的,但您必须松开鼠标,然后单击才能拖动。我希望这是无缝的。我尝试在 DOM 加载时使它们全部可拖动,然后禁用它们 (.draggable('disable')
),然后长按时重新启用,但这也不起作用。
这是一个 fiddle ,它演示了我的意思:https://jsfiddle.net/scottbeeson/r5du4p6k/4/
我该怎么做?
最佳答案
添加可拖动元素后,您可以触发元素上的原始事件:
$(self).draggable().addClass('draggable');
$(self).trigger(event)
这是一个工作示例:
var t;
$(document).on('mousedown','.menu-item', function (event) {
var self = this;
if ($(self).hasClass('draggable')) {
return;
}
t = setTimeout(function () {
$(self).draggable().draggable('enable').addClass('draggable');
console.log('start drag');
$(self).trigger(event)
}, 800);
});
$(document).on("mouseup", function () {
clearTimeout(t);
$('.draggable').removeClass('draggable').draggable( 'disable' )
});
$(function() {
$('#container').append('<div class="menu-item">1</div>')
$('#container').append('<div class="menu-item">2</div>')
$('#container').append('<div class="menu-item">3</div>')
$('#container').append('<div class="menu-item">4</div>')
$('#container').append('<div class="menu-item">5</div>')
});
body {
background: lightgray;
}
.menu-item {
display: inline-block;
width: 40px; height: 40px;
background-color: white;
margin: 5px;
text-align: center;
line-height: 40px;
cursor: pointer;
user-select: none;
transform: scale(1);
}
.draggable {
background-color: yellow;
transform: scale(1.2);
}
#log {
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<div id='container'>
</div>
<div id='log'>
</div>
Note that I alse added there
.draggable().draggable('enable')
to reverse the.draggable('disable')
you had on mouseup, to make sure that after you leave the element you will be able to drag it again (after long-press).
关于javascript - 使元素在长按时立即可拖动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44145582/
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
我是一名优秀的程序员,十分优秀!