jQuery UI draggable scrollSpeed 的单位是什么?

What is the unit of jQuery UI draggable scrollSpeed?

我不明白“100”是什么意思。是每秒 100 像素吗? 此代码取自:https://jqueryui.com/draggable/#scroll

<!doctype html>
<html lang="en">
<head>

  <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, #draggable2, #draggable3 { width: 100px; height: 100px; padding: 0.5em; float: left;        margin: 0 10px 10px 0; }
  </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() {
    $( "#draggable3" ).draggable({ scroll: true, scrollSpeed: 100 });
  } );
  </script>
</head>
<body>

<div id="draggable3" class="ui-widget-content">
 <p>scrollSpeed set to 100</p>
</div>

<div style="height: 5000px; width: 1px;"></div>


</body>
</html>
scrollSpeed 
Type: Number
Default: 20
The speed at which the window should scroll once the mouse pointer gets within the scrollSensitivity distance. Ignored if the scroll option is false.
Code examples:
Initialize the draggable with the scrollSpeed option specified:

Jquery scrollSpeed 始终按步骤确定。这意味着每次以关联的 scrollSpeed 滚动时,用户将向上或向下移动多少像素。一张卷轴 = 一步。

例如:100 scrollSpeed 表示每 600-800 毫秒每步 100 像素。虽然这个指标有很大的差异

scrollSpeed 的测量值是一个以 1000(最大值)为单位的数字

请记住,scrollSpeed 也主要由最终用户使用的浏览器控制。因此获得 pixels/second 是一个艰难的衡量标准,尤其是当用户输入随滚动变化时。

例如。 Chrome 可能不同于 Safari

在下面的 post 中,他们提到了如何调节 pixels/second 滚动速度: