<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>macaroni-works notes&#187; プラグイン</title>
	<atom:link href="http://blog.macaroniworks.net/tag/%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macaroniworks.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 16 Feb 2011 07:27:11 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>jQuery プラグイン修正版</title>
		<link>http://blog.macaroniworks.net/2010/05/jquery-%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e4%bf%ae%e6%ad%a3%e7%89%88/</link>
		<comments>http://blog.macaroniworks.net/2010/05/jquery-%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e4%bf%ae%e6%ad%a3%e7%89%88/#comments</comments>
		<pubDate>Sun, 02 May 2010 17:48:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1294</guid>
		<description><![CDATA[前回のエントリーを修正しました。 というより前のがひどすぎました。 jQuery.fn.biyoon = function(scale,duration,easing){ //var target = this; return this.each(function(){ ini_width=jQuery(this).attr("width"); ini_height=jQuery(this).attr("height"); jQuery(this).data({"ini_width":ini_width,"ini_height":ini_height}); jQuery(this).bind("mouseover",biyon).bind("mouseout",rbiyon); //return target; }); //拡大 function biyon(e){ selector=e.target; after_width=selector.width*scale+"px"; after_height=selector.height*scale+"px"; $(selector).stop().animate({width:after_width,height:after_height},duration,easing); } //戻す function rbiyon(e){ selector=$(e.target); selector.stop().animate({width:selector.data("ini_width"),height:selector.data("ini_height")},duration,easing); } };]]></description>
			<content:encoded><![CDATA[<p>前回のエントリーを修正しました。<br />
というより前のがひどすぎました。</p>
<pre class="brush:js">
jQuery.fn.biyoon = function(scale,duration,easing){

		//var target = this;
		return this.each(function(){
			ini_width=jQuery(this).attr("width");
			ini_height=jQuery(this).attr("height");
			jQuery(this).data({"ini_width":ini_width,"ini_height":ini_height});
			jQuery(this).bind("mouseover",biyon).bind("mouseout",rbiyon);
		//return target;
		});

		//拡大
		function biyon(e){
			selector=e.target;
			after_width=selector.width*scale+"px";
			after_height=selector.height*scale+"px";
			$(selector).stop().animate({width:after_width,height:after_height},duration,easing);
		}

		//戻す
		function rbiyon(e){
			selector=$(e.target);
			selector.stop().animate({width:selector.data("ini_width"),height:selector.data("ini_height")},duration,easing);
		}

	};
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/05/jquery-%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e4%bf%ae%e6%ad%a3%e7%89%88/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress　単独ページで個別のCSS</title>
		<link>http://blog.macaroniworks.net/2009/08/wordpress%e3%80%80%e5%8d%98%e7%8b%ac%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%a7%e5%80%8b%e5%88%a5%e3%81%aecss/</link>
		<comments>http://blog.macaroniworks.net/2009/08/wordpress%e3%80%80%e5%8d%98%e7%8b%ac%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%a7%e5%80%8b%e5%88%a5%e3%81%aecss/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 19:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=710</guid>
		<description><![CDATA[この度CGアーカイブのページを作るにあたり このページ個別のCSSを読み込みたいと思っていましたら、プラグインで可能でした。 その名も Head Space 2 すごく便利ですコレ。]]></description>
			<content:encoded><![CDATA[<p>この度<a href="http://blog.macaroniworks.net/cg/">CGアーカイブ</a>のページを作るにあたり<br />
このページ個別のCSSを読み込みたいと思っていましたら、プラグインで可能でした。</p>
<p>その名も Head Space 2</p>
<p>すごく便利ですコレ。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/08/wordpress%e3%80%80%e5%8d%98%e7%8b%ac%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%a7%e5%80%8b%e5%88%a5%e3%81%aecss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlashPlayer バージョン切り替えプラグイン</title>
		<link>http://blog.macaroniworks.net/2009/06/flashplayer-%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e5%88%87%e3%82%8a%e6%9b%bf%e3%81%88%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3/</link>
		<comments>http://blog.macaroniworks.net/2009/06/flashplayer-%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e5%88%87%e3%82%8a%e6%9b%bf%e3%81%88%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 09:49:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=345</guid>
		<description><![CDATA[こないだFlashPlayer9のリリース115(9.0.115.x)で 検証しようとし、FlashPlayer9のアンインストールまでした人（自分）がいましたが どうやらFireFoxのプラグインで同様の事ができるようです。 Flash Switcher ただ、入れてはみたものの 9.0.115以下のバージョンが選択できません。 また調べて記す事。]]></description>
			<content:encoded><![CDATA[<p>こないだFlashPlayer9のリリース115(9.0.115.x)で<br />
検証しようとし、FlashPlayer9のアンインストールまでした人（自分）がいましたが<br />
どうやらFireFoxのプラグインで同様の事ができるようです。</p>
<p><a href="http://www.sephiroth.it/firefox/flash_switcher/">Flash Switcher</a></p>
<p>ただ、入れてはみたものの<br />
9.0.115以下のバージョンが選択できません。<br />
また調べて記す事。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/06/flashplayer-%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e5%88%87%e3%82%8a%e6%9b%bf%e3%81%88%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

