actionscript 3-as3中的鼠标事件滚动flash和html.有没有办法停止使用javascript

actionscript 3 - Mousewheel event in as3 scrolls flash and html. is there a way to stop with javascript?

本文关键字:有没有 javascript html 3-as3 鼠标 事件 flash 滚动 actionscript      更新时间:2023-09-26

我正在使用SWFWheel获取actionscript 3中的鼠标滚轮事件,并且在需要滚动条的完整html页面中有一个小的flash窗口。flash可以正常滚动,但整个HTML页面都会随之滚动。如何在flash上禁用滚动到HTML?

最初发布于http://www.spikything.com/blog/?s=mousewheeltrap

现在在http://code.google.com/p/mousewheeltrap/

我在Facebook的一些游戏中使用了这个解决方案。工作起来很有魅力。

您应该监听包含Flash嵌入代码的DOM元素上的滚动事件。然后在处理程序中,您可以阻止默认行为。

例如,对于jQuery,您可以使用滚动事件处理程序,并在其中对事件调用preventDefault()。

<div id="flashContainer">
    <object ... />
</div>
$('#flashContainer').scroll(function(event) {
   event.preventDefault();
});