如何使网站在滚动行为中像移动/ iPad一样,以便在点击和移动指针时不是选择文本,网站应按照相同的方向滚动/滑动。
提前致谢
答案 0 :(得分:1)
There's a demo of this here它主要涉及更新mousemnove上的滚动位置:
from collections import defaultdict
d = defaultdict(dict)
for start, finish, distance in input_values:
d[start][finish] = distance