您当前的位置:中客资源站网络学院网页设计网页特效 → 文章内容 退出登录 用户管理
本类热门文章
相关下载
如何用Javascript调用Flash动画?
作者:本站整理  来源:站长网  发布时间:2007-6-26 13:46:03

减小字体 增大字体

问:网页页面中如何用Javascript调用Flash动画?

答:

在<HEADE>区加入

 程序代码

<script src="js/flash.js" type="text/javascript"></script>

在调用FLASH处加入

 程序代码

<script language="JavaScript" type="text/javascript">
 <!--
  playswf("swf/名字.swf",宽,高)
 //-->
</script>

flash.js代码:

 程序代码

// JavaScript Document
function playswf(sFile,sWidth,sHeight){
document.write('<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="'+ sWidth +'" height="'+ sHeight +'"> ');
document.write(' <param name="movie" value="'+ sFile +'"> ');
document.write(' <param name="quality" value="high"> ');
document.write(' <param name="wmode" value="transparent"> ');
document.write(' <embed src="'+ sFile +'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ sWidth +'" height="'+ sHeight +'"></embed> ');
document.write('</object> ');
}

[] [返回上一页] [打 印]
文章评论 (评论内容只代表网友观点,与本站立场无关!)

用户名: 查看更多评论

分 值:100分 85分 70分 55分 40分 25分 10分 0分

内 容:

         (注“”为必填内容。) 验证码: 验证码,看不清楚?请点击刷新验证码