我有一个html文件,其中包含一个大约3 mb的swf flash介绍
我希望在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
答案 0 :(得分: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;
});