I am implementing my own HTML5 video control to play mp4 videos inside. It works fine at all browsers instead of my destination iPho开发者_开发问答ne OS 4.3 Safari. When i am trying to load new video into my control QuickTime logo appears. And disappears when video was loaded onto device. it takes only few seconds but unfortunately such behavior breaks all my stylish design.
Is there any chance using JS or HTML, CSS to remove it ?
Use the showlogo
attribute in the EMBED
or OBJECT
tags.
For an embed it is:
<embed src="foo.mov" qtsrc="hi.mov" width="320" height="240" showlogo="false">
Put in an object it takes the form:
<param name="showlogo" value="false" >
You can find more info on HTML Scripting Guide for QuickTime on Apple.com.
精彩评论