0

我有一个包含大约 3 mb 的 swf flash 介绍的 html 文件

我希望在 swf 完全加载之前使用 jquery 或 ajax 显示加载预加载器。如何设置此预加载器请提供这些代码

提前致谢

我正在使用以下代码

<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
4

1 回答 1

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;

    });
于 2012-12-14T05:39:34.477 回答