熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Javascript >> 正文

如何用Javascript調用Flash動畫?

2022-06-13   來源: Javascript 

  問網頁頁面中如何用Javascript調用Flash動畫?

  答

  在<HEADE>區加入

  程序代碼

  <script src=js/flashjs type=text/javascript></script>

  在調用FLASH處加入

  程序代碼

  <script language=JavaScript type=text/javascript>
 <!
  playswf(swf/名字swf高)
 //>
</script>

  flashjs代碼

  程序代碼

  // JavaScript Document
function playswf(sFilesWidthsHeight){
documentwrite(<object classid=clsid:DCDBEAEDcfB codebase=#version= width=+ sWidth + height=+ sHeight +> );
documentwrite( <param name=movie value=+ sFile +> );
documentwrite( <param name=quality value=high> );
documentwrite( <param name=wmode value=transparent> );
documentwrite( <embed src=+ sFile + wmode=transparent quality=high pluginspage= type=application/xshockwaveflash width=+ sWidth + height=+ sHeight +></embed> );
documentwrite(</object> );
}


From:http://tw.wingwit.com/Article/program/Java/Javascript/201311/25308.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.