关于Flash影片的拖动控制问题?
我使用 jquery 在页面周围拖动弹出控件,一切正常,但是当页面有 Flash 影片时,当将 z-index 设置为 100 时,弹出窗口也不会出现在 Flash 上。
有解决这个问题的办法吗???
$('.modalPopup').ready(function() {
$('.modalPopup').draggable({ zIndex: 2700 });
});
I'm using jquery to drag popup control around the page ,every things work fine but when the page has flash movie the popup doesn't appear over flash also when set z-index to 100 .
is there any work around this issue???
$('.modalPopup').ready(function() {
$('.modalPopup').draggable({ zIndex: 2700 });
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此参数添加到您的
请注意,此解决方案存在一些问题(性能、处理命中区域等),但这可能会给您带来什么你需要。
查看这个方便的不同 WMODE 的演示。
Add this param to your
<object>
:Be aware that there are some issues with this solution (performance, handling hit areas, etc), but this may give you what you need.
Check out this handy demonstration of different WMODEs.