js图片轮显幻灯片 from PHPCMS

来源:互联网 发布:c语言指令 编辑:程序博客网 时间:2024/05/18 02:03

PHPCMS中使用的一个JS新闻缩略图轮显幻灯片代码,宽度和高度自行定义,图片、图片链接及图片标题之间分别用|隔开。幻灯片播放flash见附件。

JavaScript代码
  1. <script type="text/javascript">   
  2. //<![CDATA[   
  3. var interval_time=0;   
  4. var focus_width=300;   
  5. var focus_height=185;   
  6. var text_height=24;   
  7. var text_align="center";   
  8. var swf_height=focus_height+text_height;   
  9. var pics="uploadfile/2009/1106/20091106062353426.jpg|uploadfile/2009/1102/20091102101854720.jpg|uploadfile/2009/1031/20091031101656222.jpg|uploadfile/2009/1030/20091030092306162.jpg|uploadfile/2009/1023/20091023083701513.jpg";   
  10. var links="/show/760.htm|/show/755.htm|/show/754.htm|/show/752.htm|/show/746.htm";   
  11. var texts="SCIENCE专访09年四位获诺奖女科学家|记我国生物物理学奠基人贝时璋:创生物伟业 抒科学豪情|著名生物物理学家贝时璋院士逝世|纪念娄成后院士:娄院士生前发表的最后文章|张亚平院士:生物多样性研究先锋";   
  12. document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');   
  13. document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="images/focus.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#F0F0F0">');   
  14. document.write('<param name="menu" value="false"><param name=wmode value="opaque">');   
  15. document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');   
  16. document.write('<embed src="images/focus.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#F0F0F0" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');   
  17. document.write('</object>');   
  18. //]]>   
  19. </script>  

附件下载:focus.rar

原创粉丝点击