javascript擷取Flash下載進度相容IE, FireFox,Chrome瀏覽器

來源:互聯網
上載者:User

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>flash load progress</title>
<script>
</script>
</head>
<body>
<div><span class="intro">下載進度:</span>
  <div class="barborder">
    <div class="bar" id="loadpercent"></div>
  </div>
</div>


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700px" height="350" id="ieGame">
    <param name="movie" value="http://360.kuaiwan.com/games/6/6C36DF75DE92FF1148592FF0F093E5C00DA17A91.swf">
    <param name="quality" value="high"><param name="wmode" value="transparent">
    <embed 
        wmode="transparent" 
        src="http://360.kuaiwan.com/games/6/6C36DF75DE92FF1148592FF0F093E5C00DA17A91.swf" 
        quality="high" 
        type="application/x-shockwave-flash" 
        pluginspage="http://www.macromedia.com/go/getflashplayer" 
        width="700px" height="350px" id="fireFoxGame" name="fireFoxGame">
    </embed>
</object>
</body>
</html>


<script>
 
 if(window.navigator.userAgent.indexOf("Firefox")>=1 || window.navigator.userAgent.indexOf("AppleWebKit")>=1) {/*is fireFox*/
 var progress = self.setInterval(function() { 
 var progress = document.fireFoxGame;
 document.getElementById("loadpercent").innerHTML=""+progress.PercentLoaded();
 }, 5);
 //document.getElementById("loadpercent").innerHTML=""+Math.abs(progress)+"%";
 } else { /*is IE*/
 refreshProgress();
 }
 function show(){//隱藏AD層、顯示FLASH層
 document.getElementById("showAD").style.display='none';
 //document.getElementById("showSWF").style.display='block';
 }
 
 function refreshProgress() { //重新整理進度條函數
 var bar = document.getElementById("loadpercent");
 var movie = document.getElementById("ieGame");
 var nPercentLoaded = Math.abs(movie.PercentLoaded());
 bar.innerHTML= nPercentLoaded+"%";
 if(nPercentLoaded==100) {
 bar.innerHTML= "Game download is complete";
 } else {
 setTimeout('refreshProgress()',0);
 }
 }
</script>

作者“brian.netmad的部落格”
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.