/ Published in: HTML
- HTML5 video displayed for those browsers that support it.
- Falls back to Flash video for non-HTML5 browsers (below IE9).
- Placeholder image displays for non-HTML5 and non-Flash browsers.
- Does not rely on JS.
- Does not include download links.
- If using "ClearOverAll.swf" for Flash controls, make sure it lives on same level as the HTML page! (Otherwise, the controls won't appear.)
- Make sure MIME types are on the server hosting the HTML5 video files! (Add to cpanel, not the .htaccess file.)
Expand |
Embed | Plain Text
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> </head> <body> <div style="width: 667px; margin: 0 auto;"> <video width="667" height="375" controls> <source src="FILE_NAME.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <source src="FILE_NAME.ogv" type="video/ogg" /> <object width="667" height="375" type="application/x-shockwave-flash" data="FILE_NAME.swf"> <param name="movie" value="FILE_NAME.swf" /> <param name="flashvars" value="controlbar=over&image=PLACEHOLDER_FILE_NAME.jpg&file=FILE_NAME.mp4" /> <img src="PLACEHOLDER_FILE_NAME.jpg" width="250" height="152" alt="ALT_HERE" title="TITLE_HERE" /> </object> </video> </div> </body> </html>
You need to login to post a comment.
