我有一个包含大约 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