2012-12-14 130 views
0

我有含有約3 MB組預加載圖像SWF

我想,直到瑞士法郎滿載顯示一個預加載器加載使用jquery或AJAX。如何設置該預加載的SWF閃光介紹一個HTML文件請提供這些

感謝代碼提前

我用下面的代碼

<html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <title>Untitled Document</title> 
    <script src="jquery.js"></script> 
    <script> 
     $(document).ready(function(){ 
     $('embed').ready(function(){ 
     $('img').hide(); 
      }); 
    }); 
    </script> 

</head> 

<body > 
<div id="loaddata"> 

    <img src="loading.gif" /> 
    <embed src="red.swf" width="100%" height="100%" ></embed> 



</div> 

</body> 
</html> 


but it is not working 

回答

0
 HTML code (where you want to add the embed code) 



    <div style="display:none" id="dvloader"><img src="loading.gif" /></div> 

jQuery代碼

$(function() { 

      $("#dvloader").show(); 
      $(".block1").load("swf.html", function(){ $("#dvloader").hide(); }); 
      return false; 

    }); 
+0

沒有兄弟是不是鍛鍊 – PHL

+0

,你使用的另一頁包含SWF – underscore

+0

我編輯我的答案 – underscore