Home  >  Article  >  php教程  >  PHP代码中swf动画的调用

PHP代码中swf动画的调用

WBOY
WBOYOriginal
2016-05-25 16:43:48985browse

方法一、

<object  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="700"   height="400" 
	          codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#    version=6,0,40,0"> 
	           <param  name="src" value="<?php bloginfo(&#39;stylesheet_directory&#39;);/map.swf"/> 
	<param  name="quality" value="high"/> 
	</object>

PHP部分为调用动画的路径

方法二、

<embed type="application/x-shockwave-flash"    width="700"    height="400"    src="<?php bloginfo(&#39;stylesheet_directory&#39;);/map.swf"    quality="high"></embed>

使用过程中,方法一出了问题,方法二可行.

文章地址:

转载随意^^请带上本文地址!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn