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.
当我们在浏览器中上下移动滚动条时,我需要为一个圆圈填充颜色。上下移动页面。
请帮忙。
使用 jquery 和 jquery ui 您可以使用鼠标滚轮事件。
$('#...').bind('mousewheel', function(e) { });
这是一个示例,应该可以帮助您入门:
JSFiddle
更多信息:
JavaScript 的 onmousewheel 事件