Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在可可中,有一个 API 可以随时在滚动视图中“闪烁”mac 滚动拇指。
如何在overflow:scroll;元素上使用 javascript 在 safari 中执行此操作?我想让覆盖滚动拇指可见一两秒钟,然后消失。
overflow:scroll;
我最终在页面上的滚动拇指应该所在的位置插入了一个,并在延迟后使用 CSS3 过渡动画将其不透明度设置为 0。
我还检查任何用户滚动事件,并在没有动画的情况下立即隐藏图像。
这段代码对我有用:
element.scrollTop = 1; element.scrollTop = 0;