开发者

Drag control over flash movie issue?

开发者 https://www.devze.com 2023-01-15 06:47 出处:网络
I\'m开发者_如何学Python 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 .

I'm开发者_如何学Python 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 });
});


Add this param to your <object>:

<param name="wmode" value="transparent">

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消