<?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>DR-PS</title>
	<atom:link href="http://www.dr-ps.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dr-ps.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 28 Apr 2012 04:38:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Simple jQuery Slideshow</title>
		<link>http://www.dr-ps.com/news/368</link>
		<comments>http://www.dr-ps.com/news/368#comments</comments>
		<pubDate>Mon, 20 Feb 2012 17:04:03 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[イラスト]]></category>
		<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=368</guid>
		<description><![CDATA[もっとかんたんに超軽量スクリプトでクロスフェードを入れてみました。Jon Raasch&#8217;s blog を参考にしました。 スライドショー jQuery.TinySlider と同じように、WordPress  [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2012/04/jquery-cross.gif" alt="" title="jquery-cross" width="260" height="150" class="alignleft size-full wp-image-370" />もっとかんたんに超軽量スクリプトでクロスフェードを入れてみました。<a href="http://jonraasch.com/blog/a-simple-jquery-slideshow" target="_blank">Jon Raasch&#8217;s blog</a> を参考にしました。<br />
スライドショー <a href="http://www.dr-ps.com/news/301">jQuery.TinySlider</a> と同じように、WordPress で使う時には $ を jQuery に書き換えます。さらに<a href="http://otani-webs.com/lab/javascript/100815_2.html" target="_blank"> LabPad </a>を参考にして画像リンクの設定をしてあります。<br />
<br style="clear: both;" /></p>
<p>1）header.php にスクリプトを入れます。</p>
<blockquote><pre class="code"><code>&lt;script type=&quot;text/javascript&quot;&gt;
function slideSwitch() {
var $active = jQuery(&#039;#slideshow a.active&#039;);
if ( $active.length == 0 ) $active = jQuery(&#039;#slideshow a:last&#039;);
var $next =  $active.next().length ? $active.next()
: jQuery(&#039;#slideshow a:first&#039;);
$active.addClass(&#039;last-active&#039;);
$next.css({opacity: 0.0})
.addClass(&#039;active&#039;)
.animate({opacity: 1.0}, 1000, function() {
$active.removeClass(&#039;active last-active&#039;);
});
}
jQuery(function() {
setInterval( &quot;slideSwitch()&quot;, 6000 );
});
&lt;/script&gt;</code></pre>
</blockquote>
<p>2）HTML は、こんな感じ。</p>
<blockquote><pre class="code"><code>&lt;div id=&quot;slideshow&quot;&gt;
&lt;a class=&quot;active&quot; href=&quot;#&quot;&gt;&lt;img src=&quot;pi-kun.gif&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;pi-kun2.gif&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;pi-kun3.gif&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</code></pre>
</blockquote>
<p>3）CSS で調整します。</p>
<blockquote><pre class="code"><code>&lt;style type=&quot;text/css&quot;&gt;
#slideshow { position:relative; width:685x; height:282px; }
#slideshow a { position:absolute; top:0; left:0; z-index:8; opacity:0.0; }
#slideshow a.active { z-index:10; opacity:1.0; }
#slideshow a.last-active { z-index:9; }
&lt;/style&gt;</code></pre>
</blockquote>
<p>ちょっとした小さな画像でも使えそうです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/368/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>スライドショー jQuery.TinySlider</title>
		<link>http://www.dr-ps.com/news/301</link>
		<comments>http://www.dr-ps.com/news/301#comments</comments>
		<pubDate>Mon, 24 Oct 2011 02:40:33 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[イラスト]]></category>
		<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=301</guid>
		<description><![CDATA[最近のニーズに合わせてTOPページのアクセントとして簡単なスライドショーを入れてみました。WordPress には標準で jquery.js が入っていますが、使う時には、$ を jQuery に書き換えます。 今回は  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dr-ps.com/wp-content/uploads/2011/10/entry-image.png"><img src="http://www.dr-ps.com/wp-content/uploads/2011/10/entry-image.png" alt="" title="entry-image" width="260" height="150" class="alignleft size-full wp-image-323" /></a>最近のニーズに合わせてTOPページのアクセントとして簡単なスライドショーを入れてみました。WordPress には標準で jquery.js が入っていますが、使う時には、$ を jQuery に書き換えます。</p>
<p>今回は<a href="http://coliss.com/articles/build-websites/operation/javascript/jquery-plugin-tinyslider.html" target="_blank"> コリスさんのページ </a>を参考に CSS を調整しました。現在表示しているパネルの位置ボタンをオリジナル画像に作り直し、コントローラーボタンも出さない設定にしてみました。<br />
<br style="clear: both;" /></p>
<p>1）ヘッダーに必要なスクリプトをリンクさせる。<br />
jquery.js<br />
jquery.slider.min.js<br />
jquery.slider.css</p>
<p>2）ヘッダーにスクリプトを入れる。</p>
<blockquote>
<pre class="code"><code>&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function() {
jQuery(&#039;#slider&#039;).slider({
showControls: false, // コントローラーボタン非表示
wait: 6500, // 次のフレームまでの待ち時間
fade: 500, // フェードの時間
showPosition: true, // 現在表示しているパネルの位置ボタン表示
direction: &#039;left&#039; // 左にスライド
});
});
&lt;/script&gt;</code></pre>
</blockquote>
<p>3）入れたいページにHTMLを書く。<br />
div要素に背景として入れます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/301/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>アクティブなぴーくん</title>
		<link>http://www.dr-ps.com/news/263</link>
		<comments>http://www.dr-ps.com/news/263#comments</comments>
		<pubDate>Fri, 16 Sep 2011 14:27:10 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[イラスト]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=263</guid>
		<description><![CDATA[TOP のイラストを更新しました。今回のは新しい星で生産性を上げているイメージで、ぴーくんもアクティブにしてみました。まかぬタネの芽はでない&#8230;っていうのは、花作りの好きな母の言葉ですが、説得力があってとても好 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dr-ps.com/wp-content/uploads/2011/09/star.gif"><img src="http://www.dr-ps.com/wp-content/uploads/2011/09/star.gif" alt="" title="star" width="260" height="150" class="alignleft size-full wp-image-265" /></a>TOP のイラストを更新しました。今回のは新しい星で生産性を上げているイメージで、ぴーくんもアクティブにしてみました。まかぬタネの芽はでない&#8230;っていうのは、花作りの好きな母の言葉ですが、説得力があってとても好きです。考えるよりまず実行、先の事よりまず目の前の事を片付けるようにしています。<br style="clear: both;" /></p>
<blockquote><p>イラスト制作は現在受付中です。<br />
ご依頼は<a href="http://www.dr-ps.com/contact"> お問い合わせ </a>からお願いします。</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/263/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>最近の投稿10件をフッターに表示</title>
		<link>http://www.dr-ps.com/news/253</link>
		<comments>http://www.dr-ps.com/news/253#comments</comments>
		<pubDate>Wed, 15 Jun 2011 16:22:17 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=253</guid>
		<description><![CDATA[ページ下のサムネイルを5件から10件に変更しました。 (&#8216;showposts&#8217;=>10) 今日は未明から皆既月食だそうです。いまはまだ真上に見える月も早朝には消えてしまうのですね。夜明けも早いので [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/06/sample2.gif" alt="" title="sample2" width="260" height="150" class="alignleft size-full wp-image-298" />ページ下のサムネイルを5件から10件に変更しました。<br />
(&#8216;showposts&#8217;=>10)</p>
<p>今日は未明から皆既月食だそうです。いまはまだ真上に見える月も早朝には消えてしまうのですね。夜明けも早いので、ちょっと見てみたい気もしますがきっと夢の中です。<br style="clear: both;" /></p>
<blockquote><p><a href="http://www.nationalgeographic.co.jp/news/news_article.php?file_id=20110615004">10年ぶりの長時間、今夜皆既月食</a><br />
National Geographic</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/253/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ラベンダーぴーこ登場</title>
		<link>http://www.dr-ps.com/news/240</link>
		<comments>http://www.dr-ps.com/news/240#comments</comments>
		<pubDate>Mon, 02 May 2011 20:38:55 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[イラスト]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=240</guid>
		<description><![CDATA[こんにちは。もうすっかり気持ちいい季節になりましたね。うちの庭にもラベンダーがいっぱい咲いてきたのでラベンダーぴーこに登場してもらうことにしました。ぴーくんの仲間たちのひとりでとてもまじめ派のラベンダーぴーこ。これからも [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/05/lavender.gif" alt="" title="lavender" width="260" height="150" class="alignleft size-full wp-image-241" />こんにちは。もうすっかり気持ちいい季節になりましたね。うちの庭にもラベンダーがいっぱい咲いてきたのでラベンダーぴーこに登場してもらうことにしました。ぴーくんの仲間たちのひとりでとてもまじめ派のラベンダーぴーこ。これからも活躍してもらいますのでかわいがってくださいネ！</p>
<p>※キャラクター使用については<a href="http://www.dr-ps.com/contact"> こちらから </a>お問い合せください。<br style="clear: both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/240/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>最近の投稿5件をフッターに表示</title>
		<link>http://www.dr-ps.com/news/152</link>
		<comments>http://www.dr-ps.com/news/152#comments</comments>
		<pubDate>Sat, 05 Feb 2011 18:58:35 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=152</guid>
		<description><![CDATA[フッターにアイキャッチ画像をだしてみました。どのページにも表示されるサムネイルで最新エントリ5件を見ることができます。画像のサイズは管理画面と表示される側と分けることができます。正方形に画像の一部を切り取ることもできます [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/02/eye.gif" alt="" title="eye" width="260" height="150" class="alignleft size-full wp-image-208" />フッターにアイキャッチ画像をだしてみました。どのページにも表示されるサムネイルで最新エントリ5件を見ることができます。画像のサイズは管理画面と表示される側と分けることができます。正方形に画像の一部を切り取ることもできますが、ここでは同じ比率で縮小しています。<br />
<br style="clear: both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/152/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox クリック時に出る点線を消す</title>
		<link>http://www.dr-ps.com/news/62</link>
		<comments>http://www.dr-ps.com/news/62#comments</comments>
		<pubDate>Tue, 01 Feb 2011 00:00:23 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=62</guid>
		<description><![CDATA[Firefox のクリック時にでるリンクカラーの点線が気になっていましたが a タグに以下の2行を入れて消してみました。（Firefox 3.6で確認） a { overflow: hidden; outline: no [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/02/linkline1.gif" alt="" title="linkline" width="260" height="150" class="alignleft size-full wp-image-128" />Firefox のクリック時にでるリンクカラーの点線が気になっていましたが a タグに以下の2行を入れて消してみました。（Firefox 3.6で確認）<br />
a {<br />
    overflow: hidden;<br />
    outline: none;<br />
}<br style="clear: both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/62/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery で画像表示してみる</title>
		<link>http://www.dr-ps.com/news/84</link>
		<comments>http://www.dr-ps.com/news/84#comments</comments>
		<pubDate>Mon, 31 Jan 2011 00:00:19 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=84</guid>
		<description><![CDATA[current_page_item にCSS でハイライト画像を入れる方法で、ＩＥ6 が反映されない（複数の class を並べて使えない）ので jQuery で表示してみました。WordPress には jQuery  [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/01/jquery.gif" alt="" title="jquery" width="260" height="150" class="alignleft size-full wp-image-145" />current_page_item にCSS でハイライト画像を入れる方法で、ＩＥ6 が反映されない（複数の class を並べて使えない）ので jQuery で表示してみました。WordPress には jQuery のライブラリが標準で入っているので、js ファイルに必要なコードだけ書いてCSSファイルと同じ位置に置きます。 これで IE6 のメニューもそろいました。<br style="clear: both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/84/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>現在のページをハイライト表示</title>
		<link>http://www.dr-ps.com/news/60</link>
		<comments>http://www.dr-ps.com/news/60#comments</comments>
		<pubDate>Tue, 25 Jan 2011 13:35:49 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[チップス]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=60</guid>
		<description><![CDATA[このページに使っているちょっとしたチップスを少しずつ書いていこうと思います。 現在のページのメニュー画像をハイライトさせる方法ですが、ヘッダーには、wp_list_pages(&#8216;title_li=&#8217 [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/01/item.gif" alt="" title="item" width="260" height="190" class="alignleft size-full wp-image-65" />このページに使っているちょっとしたチップスを少しずつ書いていこうと思います。</p>
<p>現在のページのメニュー画像をハイライトさせる方法ですが、ヘッダーには、wp_list_pages(&#8216;title_li=&#8217;)　が入れてあります。<a href="http://wpdocs.sourceforge.jp/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/wp_list_pages">wp_list_pages()</a> をページ表示時に呼び出すと、そのページを指すリストアイテムには current_page_item というクラスが追加されますので、 それを利用してCSS セレクタでデザインします。<br style="clear: both;" /></p>
<p>ページ ID は、管理画面のページ項目にオンマスすると確認できますが、ローカルのテスト環境で使う場合は、IDが変わるので注意が必要です。（確認ブラウザ：Firefox3 / IE8）</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/60/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nenga 2011</title>
		<link>http://www.dr-ps.com/news/14</link>
		<comments>http://www.dr-ps.com/news/14#comments</comments>
		<pubDate>Tue, 04 Jan 2011 08:59:47 +0000</pubDate>
		<dc:creator>mieko</dc:creator>
				<category><![CDATA[イラスト]]></category>

		<guid isPermaLink="false">http://www.dr-ps.com/?p=14</guid>
		<description><![CDATA[ぴーくん Nenga のほしい方はお問い合わせからご連絡ください。ご希望の解像度でお渡しします。 ことしもよろしくお願いいたします。]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dr-ps.com/wp-content/uploads/2011/01/2011_drps.gif" alt="" title="2011_drps" width="440" height="309" class="alignleft size-full wp-image-39" />ぴーくん Nenga のほしい方は<a href="http://www.dr-ps.com/contact">お問い合わせ</a>からご連絡ください。ご希望の解像度でお渡しします。</p>
<p>ことしもよろしくお願いいたします。<br style="clear: both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dr-ps.com/news/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

