テキストを面白く表示するJavaScript「jQuery Text Effect Plugin」

テキストが普通じゃつまらない。
そんなあなたには、こんなJavaScriptはいかがでしょうか?
テキストサイズを徐々に大きく(または小さく)してくれるjqIsoText: jQuery Text Effect Pluginです。

使用方法

jqIsoText: jQuery Text Effect PluginからjqIsoText.js をjquery.jsをダウンロードします。

<script type="text/javascript" src="jquery-1.4.2.min.js"></script>	
<script type="text/javascript" src="jqIsoText.js"></script>	
<script>
$(function(){
	$('.class名').jqIsoText()
});
</script>
あとは要素にclassを振れば完成です。

<p class="class名">texttexttext</p>
またオプションとしてサイズを指定可能です。

<script>
$(function(){
	$('.class名').jqIsoText({ 
		fromSize: 50,  //最大サイズ
		toSize: 10 //最小サイズ
	})  
});
</script>

サンプル

this is sample! これがサンプルです。