sIFRR---flashで表示する要素をフラッシュに変換します。


1、sIFRRのダウンロード先を提供してください。
http://www.mikeindustries.com/blog/sifr/
ここのリンクの一番下に、ダウンロードリンクがあります。http://www.mikeindustries.com/blog/files/sifr/2.0/sIFR-2.0.7.zip
2,私のサンプルコードを貼ってください。
<?php
//load the URL factory library
//require_once 'include/url_factory.inc.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
	<head>
		<title>The SEO Egghead Shop</title>
		<script type="text/javascript" language="javascript" src="sifr/sifr.js"></script>
		<link type="text/css" rel="stylesheet" href="sifr/sIFR-screen.css" media="screen" />
		<link type="text/css" rel="stylesheet" href="sifr/sIFR-print.css" media="print" />
		<!-- sIFR replacement code -->
		<script type="text/javascript" language="javascript">
			//continue only if the sIFR code has been loaded
			if(typeof sIFR == "function"){
				//replace the <h1> text
				sIFR.replaceElement(named({sSelector:"body h1",sFlashSrc:"./sifr/tradegothic.swf"}))
			}
		</script>
	</head>
	<body>
		<h1>Products on Promotion at SEO Egghead Shop</h1>
		<ul>
			<li>
				<a href="<?php //echo make_category_product_url("Carpenter's Tools",12,"Belt Sander",45);?>">
					Carpenter's Tools: Belt Sander
				</a>
			</li>
			<li>
				<a href="<?php //echo make_category_product_url("SEO Toolbox",6,"Link Juice",31);?>">
					SEO Toolbox: Link Juice
				</a>
			</li>
			<li>
				<a href="<?php //echo make_category_product_url("Carpenter's Tools",12,"Belt Sander",45);?>">
					Carpenter's Tools: Belt Sander
				</a>
			</li>
			<li>
				<a href="/popup.php">
					POPUP
				</a>
			</li>
		</ul>
	</body>
</html>
コードの部分だけ注意してください。
効果スタンプ:
未使用の前:
sIFR---将要用flash显示的元素转换为flash_第1张图片
使用後:
sIFR---将要用flash显示的元素转换为flash_第2张图片