I got a video element on a page that's working fine both in safari mobile and desktop. I have a seme-transparent pull-down menu that's working fine. The problem is, when the menu is over the video element, on the desktop safari i can see the video under the menu (as desired), while on the mobile version the video element stay on the foreground (ugly) no matter what i tell the css. Is there any workaround?

An image of the problem

link|improve this question

feedback

6 Answers

up vote 6 down vote accepted

Unfortunately not.

Based on my experience and understanding of how iOS currently works, this isn't possible.

Mobile Safari on the iPad cuts a hole for a Quicktime window , which plays back the video using the built in hardware acceleration to improve battery life. (The iPhone and iPod Touch just open it up in a separate window to achieve the same effect.)

This window doesn't play nicely with the other HTML on the page. In fact, I haven't found a way to get mobile Safari to display anything on top of a tag. My guess is that this is because the hardware acceleration only allows for video scaling and positioning, and that it's only able to handle one video at a time.

link|improve this answer
Now that's sad. I will have to stop and hide the video when the menu is opened. It's an ugly workaround, let's hope someone come up with a solution. Thanks anyway. – Marek Sep 11 '10 at 11:28
It can be done. as Jaffa The Cake said, this thing happens only on dynamically inserted video elements – gion_13 Jul 29 '11 at 13:49
feedback

The issue only occurs if the video element was dynamically created. If the element was just in the page as it loaded, z-index works fine.

You can fix z-index on dynamically created videos by giving the video element -webkit-transform-style: preserve-3d

Yep, it's as bad as haslayout on IE!

link|improve this answer
I'm not getting this to work; can you please post an example? – N Rohler Feb 16 '11 at 18:17
1  
+1 you are right! this happens only on dynamically created elements. Thank you so so much:) – gion_13 Jul 29 '11 at 13:48
Isn't working for me, does this work with IOS5? – Ash Blue Feb 17 at 17:14
feedback

I have managed to place a menu div over a html5 video tag in mobile-safari on the ipad. To be honest I didn't have any problems and it just worked. It could be though because I was using CSS3 animations and therefore the GPU? You could try using a hack to add an element to the GPU. If you put -webkit-transform: translateZ(0); on the element it should force it to use the GPU...

link|improve this answer
feedback

I'm using flowplayer and a simple CSS dropdown menu and had the same problem.

I have drop down menu that, when tapped, covers part of the video area. The submenu shows up over the video as expected, but no touch events were being sent.

I fixed it by combining a couple of suggestions from others answering this question: I set visibility:hidden when opening the menu and visibility:visible when closing the submenu, AND set the -webkit-transform-style:preserve-3d CSS property on the video.

Here's the pertinent code. I left out the CSS for the menubar, but it does what you might expect - resulting in a menu that covers portions of the video.

menu and video HTML

<div id='nav'>
  <ul>
    ... <!-- bunch of ul/li stuff here for the menu and submenus -->
  </ul>
</div>
<div id='videoplayer'><!-- for flowplayer --></div>

CSS

video {
  -webkit-transform-style: preserve-3d;
}

Javascript

$(document).ready(function(){
  $("#nav li").hover(
    function() {
      $(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(300);
      $("video").css({visibility:"hidden"});
    },
    function(){ 
      $(this).find('ul:first').css({visibility: "hidden"});
      $("video").css({visibility:"visible"});
    }
  );
);
link|improve this answer
TROY YOU ARE A LIFESAVER! Troy's answer is the answer if you're having this problem: stackoverflow.com/questions/9951463/… – Jason Mar 30 at 23:59
feedback

-webkit-transform-style:preserve-3d and -webkit-transform:translateZ(0) didn't work for me.

Using Flowplayer with the ipad plugin and the controlbar plugin allowed me to remove the ipad created control bar and replace it with something that can be z-indexed below my modal windows.

link|improve this answer
feedback

I ran into this also. The only thing that I could get to work for me was to add

display:none

to the video tag when showing a div over it that needed to be clicked on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.