magmac / jquery-tubular

Automatically exported from code.google.com/p/jquery-tubular
MIT License
0 stars 0 forks source link

video-cover not working in IE(9) [fix] #14

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Not sure if I am the only one experiencing this, but in IE(9) the video is 
clickable. To fix this, I used this CSS:

<pre><code>#video-cover{
    background: black;
    opacity:0.00000000000000001;
}</code></pre>

Original issue reported on code.google.com by eneth...@gmail.com on 1 Feb 2012 at 6:31

GoogleCodeExporter commented 8 years ago
#video-cover{
    background: black;
    opacity:0.00000000000000001;
}

Original comment by eneth...@gmail.com on 1 Feb 2012 at 6:31

GoogleCodeExporter commented 8 years ago
thanks for that!

Original comment by marbromg...@gmail.com on 1 Feb 2012 at 8:46

GoogleCodeExporter commented 8 years ago
I'll work this into the next build.  Thanks for noting.

Original comment by seanmcca...@gmail.com on 24 Feb 2012 at 2:23

GoogleCodeExporter commented 8 years ago
This occurs in IE 8 also and fix doesn't work in IE 8 because opacity doesn't 
work properly in IE 8.

Original comment by bkey...@gmail.com on 6 Apr 2012 at 5:59

GoogleCodeExporter commented 8 years ago
ok this is is the fix that works for for IE 8

#video-cover{
   background-color:black;
   filter: alpha(opacity=0);
}

Original comment by bkey...@gmail.com on 6 Apr 2012 at 3:52

GoogleCodeExporter commented 8 years ago
new version 1.0 probably fixed this.  will have to do a little QA on win.

Original comment by seanmcca...@gmail.com on 1 Oct 2012 at 10:26