0

在我的一个项目中,我使用如下滑块(类似于下面给出的)。

我怎样才能使它更敏感,以便它在 iPhone 中有效地工作。目前它在 iPhone 中不能正常工作。当我拖动滑块时,它的响应不好。这适用于三星 Galaxy。

请帮忙

<!doctype html> 
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Slider - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <script src="jquery.ui.touch-punch.js"></script> 
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  jQuery(function() {
    jQuery( "#slider" ).slider();

  });
  </script>
</head>
<body>

<div id="slider"></div>


</body>
</html>

如果我添加“jQuery mobile”会有帮助吗?

4

2 回答 2

1

尝试添加step具有较小值的参数,例如:

$("#slider").slider({
   min: 0,
   max: 10,
   step: 0.1
});
于 2013-05-14T10:29:29.603 回答
1

下载此https://raw.github.com/furf/jquery-ui-touch-punch/master/jquery.ui.touch-punch.js并将其包含在您的路径中。它会解决你的问题。

于 2013-07-18T07:27:40.087 回答