We have to support IE 8 so the HTML5 video tag is not an option. The application has to support Quick Time player, so the Flash plug in can not be used.
I am using object
and embed
tags开发者_StackOverflow社区 to embed video in HTML. It doesn't show a full screen option. How do I add a control which, when clicked, opens a new page and plays video in full screen.
Here is the code that worked.
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="appldnld.apple.com.edgesuite.net/content.info.apple.com/…; WIDTH="480" HEIGHT="297" >
<PARAM NAME="src" VALUE="URL">
<PARAM NAME="autoplay" VALUE="false">
<PARAM NAME="scale" VALUE="ToFit">
<PARAM NAME="controller" value="true">
<video SRC="URL" TYPE="image/x-macpaint" PLUGINSPAGE="apple.com/quicktime/download"; QTSRC="URL" WIDTH="480" HEIGHT="297" SCALE="ToFit" controls="true"></video>
</OBJECT>
精彩评论