This is a well-known z-index issue caused by the Flash player. In brief, instead of being rendered within the browser, the Flash player is rendered in a new window (a bit like an i-frame) that is put on top of your browser. Because of this weird rendering, the Flash player will always stay on top of other components on your pages.
Luckily, the solution to this problem is pretty simple :). You simply need to set the
wmode
parameter of the Flash player to opaque
.With JSF and PrimeFaces's
p:media
component, you can easily achieve the above goal as following:
No comments:
Post a Comment