gpt4 book ai didi

javascript - 如何使用适用于每个网络浏览器(鼠标和触摸)的java脚本实现简单的拖动功能

转载 作者:行者123 更新时间:2023-12-03 04:04:15 25 4
gpt4 key购买 nike

为此有无数的 jquery 插件。但我发现没有一个可以在 Edge、Chrome、Firefox 和 Safari、鼠标和触摸上工作。您知道合适的稳定解决方案吗?它不一定是基于 jquery 的。也可以是原生JS。

<小时/>

谢谢@Alexis,根据你的提示,我找到了一个似乎有效的解决方案。这里是核心功能:

var drag = false;

$('#map').on( "mousedown touchstart", function(e){
drag = true;
console.log('start');
});
$('#map').on( "touchmove", function(e){
if (e.targetTouches.length == 1 && drag == true) {
var touch = e.targetTouches[0];
console.log(touch);
}
});
$('#map').on( "mousemove", function(e){
if (drag == true) {
console.log(e.pageX);
}
});
$('#map').on( "mouseup touchend", function(e){
drag = false;
console.log('end');
});

最佳答案

据我所知,jQuery UI 拖放是跨浏览器的:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Draggable - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<style>
#draggable { width: 150px; height: 150px; padding: 0.5em; }
</style>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#draggable" ).draggable();
} );
</script>
</head>
<body>

<div id="draggable" class="ui-widget-content">
<p>Drag me around</p>
</div>


</body>
</html>

js fiddle :

https://jsfiddle.net/riazxrazor/swepy32t/

关于javascript - 如何使用适用于每个网络浏览器(鼠标和触摸)的java脚本实现简单的拖动功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44629567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com