すべてのブラウザで動画を再生したい。この私の以下のコードは正常に動作していますが、IE8 以下では動作しませんchrome
。firefox
エラーのない空白のページ。また、タブレット、すべてのブラウザ、IPHONE、および MAC でこのコードを改善するために、あなたの親切な提案が必要です。
すべての IE でパフォーマンスを改善するための提案はありますか。
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Demo</title>
<meta name="description" content="">
<meta name="author" content="">
<title>
Demostration of ektuhi video
</title>
<script src="http://jwpsrv.com/library/irhCxKvuEeKSqiIACpYGxA.js"></script>
<style type="text/css">
html,body { height:100%; width:100%; padding:0; margin:0; }
#player {
height:100%;
width:100%; padding:0; margin:-3px;}
</style>
</head>
<body>
<div id='my-video'></div>
<script type='text/javascript'>
jwplayer('my-video').setup({
flashplayer: 'player.swf',
file: 'http://content.bitsontherun.com/videos/bkaovAYt-364766.mp4',
image: 'http://www.longtailvideo.com/content/images/phoenix/download_video_preview.png',
width: '100%',
height: '100%',
stretching: 'exactfit'
});
</script>
</body>
</html>