<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>ホームページ制作(WEB制作)のスタジオハロー 長野県(諏訪市,茅野市,岡谷市,松本市) &#187; ホームページ制作-TIPS</title>
	<atom:link href="http://www.wp-plan.com/category/tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wp-plan.com</link>
	<description>ホームページ制作/SEO対策/ブログ制作などハイクオリティなWEBデザインをご提供。長野県を始め全国に対応いたします。SEOに強く結果の出るホームページ制作、コンサルティングを行うホームページ作成会社です。</description>
	<lastBuildDate>Wed, 07 Dec 2011 04:31:41 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.wp-plan.com/category/tips/feed" />
		<item>
		<title>JQueryを使ったスライドショー</title>
		<link>http://www.wp-plan.com/tips/post744</link>
		<comments>http://www.wp-plan.com/tips/post744#comments</comments>
		<pubDate>Wed, 06 Oct 2010 07:57:34 +0000</pubDate>
		<dc:creator>st-hallo</dc:creator>
				<category><![CDATA[ホームページ制作-TIPS]]></category>

		<guid isPermaLink="false">http://www.wp-plan.com/?p=744</guid>
		<description><![CDATA[高機能なAjaxライブラリjQueryを使ったスライドショー。 easy slider1.5 デモ デモ１（cssスタイルなし） デモ２（cssスタイル適用） デモ３（cssスタイルなし、垂直方向にスライド） デモ４（c [...]]]></description>
			<content:encoded><![CDATA[<h3>高機能なAjaxライブラリjQueryを使ったスライドショー。</h3>
<p><img class="alignnone size-full wp-image-745" title="easy-slider" src="http://www.wp-plan.com/wp-content/uploads/2010/10/easy-slider.gif" alt="" width="630" height="123" /></p>
<p><a href="http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding" target="_blank">easy slider1.5</a></p>
<h3 class="midashi">デモ</h3>
<ul>
<li>
<ol><a href="http://cssglobe.com/lab/easyslider1.5/01.html">デモ１</a>（cssスタイルなし）</ol>
<ol><a href="http://cssglobe.com/lab/easyslider1.5/02.html">デモ２</a>（cssスタイル適用）</ol>
<ol><a href="http://cssglobe.com/lab/easyslider1.5/03.html">デモ３</a>（cssスタイルなし、垂直方向にスライド）</ol>
<ol><a href="http://cssglobe.com/lab/easyslider1.5/04.html">デモ４</a>（cssスタイル適用、自動スライド）</ol>
<ol><a href="http://cssglobe.com/lab/easyslider1.5/05.html">デモ５</a>（複数のスライダーを設置）</ol>
</li>
</ul>
<h3 class="midashi">設置方法</h3>
<p><a href="http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding" target="_blank">easy slider</a> 配布ページよりデータをダウンロードします。</p>
<p>head要素に以下を埋め込みます。（デモ４）</p>
<blockquote><p>&lt;script src=&#8221;js/jquery.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;script src=&#8221;js/easySlider1.5.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(document).ready(function(){<br />
$(&#8220;#slider&#8221;).easySlider({<br />
auto: true,<br />
continuous: true });<br />
});<br />
&lt;/script&gt;</p></blockquote>
<p>表示する部分は次の通りです。</p>
<blockquote>
<pre>&lt;div id="slider"&gt;
&lt;ul&gt;
&lt;li&gt;画像や文章その1&lt;/li&gt;
&lt;li&gt;画像や文章その2&lt;/li&gt;
&lt;li&gt;画像や文章その3&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</pre>
</blockquote>
<p>CSSの設定（デモ４）</p>
<blockquote>
<pre>#slider{}
#slider ul, #slider li{
	margin:0;
	padding:0;
	list-style:none;
	}
#slider li{
	width:696px;
	height:241px;
	overflow:hidden;
	}
#prevBtn, #nextBtn{
	display:block;
	width:30px;
	height:77px;
	position:absolute;
	left:-30px;
	top:71px;
	}
#nextBtn{
	left:696px;
	}
#prevBtn a, #nextBtn a{
	display:block;
	width:30px;
	height:77px;
	background:url(images/btn_prev.gif) no-repeat 0 0;
	}
#nextBtn a{
	background:url(images/btn_next.gif) no-repeat 0 0;
	}</pre>
</blockquote>
<p>画像やテキストなどを配置することが可能です。スライドのコントローラーはテキストや画像を使用することができます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wp-plan.com/tips/post744/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.wp-plan.com/tips/post744" />
	</item>
		<item>
		<title>Webデザインの配色に迷ったら</title>
		<link>http://www.wp-plan.com/tips/post577</link>
		<comments>http://www.wp-plan.com/tips/post577#comments</comments>
		<pubDate>Fri, 07 May 2010 03:48:36 +0000</pubDate>
		<dc:creator>st-hallo</dc:creator>
				<category><![CDATA[ホームページ制作-TIPS]]></category>

		<guid isPermaLink="false">http://www.wp-plan.com/?p=577</guid>
		<description><![CDATA[Webサイトを制作するとき、「サイトデザイン」の方向決めとして必ずカンプを提出します。 その際、どのようなイメージで何色を基調にサイトを作るか。 これが決まらないとなかなか先に進めません。 企業だったらコーポレートカラー [...]]]></description>
			<content:encoded><![CDATA[<p>Webサイトを制作するとき、「サイトデザイン」の方向決めとして必ずカンプを提出します。</p>
<p>その際、どのようなイメージで何色を基調にサイトを作るか。<br />
これが決まらないとなかなか先に進めません。</p>
<p>企業だったらコーポレートカラーやロゴで使用している色、またクライアントの希望する色をうかがってベースとなるカラーを決めるのですが、商用サイトなどは、さまざまなコンテンツの組み合わせでできているので、それらを区別するための配色のバランスなど迷うこともあります。</p>
<p>そんなときに参考にしたいサイト。</p>
<p><a href="http://www.colordic.org/" target="_blank">『WEB色見本 原色大辞典 &#8211; HTML Color Names』</a></p>
<p><img class="alignnone size-full wp-image-575" title="colar" src="http://www.wp-plan.com/wp-content/uploads/2010/05/colar.jpg" alt="" width="400" height="319" /></p>
<p>＊色の名前とHTMLタグが一目でわかるWEB色見本</p>
<p>『<a href="http://kuler.adobe.com/" target="_blank">Adobe kuler</a>』</p>
<p><img class="alignnone size-full wp-image-576" title="kurel" src="http://www.wp-plan.com/wp-content/uploads/2010/05/kurel.jpg" alt="" width="400" height="304" /></p>
<p>＊配色をWebブラウザ上で作成・共有できるWebアプリケーションツール。</p>
<p>「Create」からベースカラーを決め、「From a  Rule」から<br />
「Analogous（類似色）」<br />
「Monochromatic（単色）」<br />
「Triad  （3分割）」<br />
「complementary（補色）」<br />
「Compound（間色）」<br />
「Shades（階調）」<br />
のいずれかのルールを選択するだけで、2〜5 色の配色パターンを作成できます。</p>
<p>その他にも「Popular（定番配色）」や「Highest  Rated（人気配色）」、「Newest（新しく公開された配色）」といったメニューがあり、色のタイトルを参考に選ぶこ とができます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wp-plan.com/tips/post577/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.wp-plan.com/tips/post577" />
	</item>
		<item>
		<title>styleneatー自作のCSSを見やすく整えてくれるツール</title>
		<link>http://www.wp-plan.com/tips/post343</link>
		<comments>http://www.wp-plan.com/tips/post343#comments</comments>
		<pubDate>Thu, 12 Nov 2009 02:15:50 +0000</pubDate>
		<dc:creator>st-hallo</dc:creator>
				<category><![CDATA[ホームページ制作-TIPS]]></category>

		<guid isPermaLink="false">http://www.wp-plan.com/?p=343</guid>
		<description><![CDATA[wordpressネタではないのですが、ちょっと面白いサイトをご紹介。 Styleneat 自作のCSSを見やすく整えてくれるツールです。]]></description>
			<content:encoded><![CDATA[<p>wordpressネタではないのですが、ちょっと面白いサイトをご紹介。</p>
<p><a href="http://www.styleneat.com/index.php" target="_blank"><img title="styleneat" src="http://www.wp-plan.com/wp-content/uploads/2009/11/styleneat.jpg" alt="styleneat" width="400" height="282" /></a></p>
<p><a href="http://www.styleneat.com/index.php" target="_blank">Styleneat</a></p>
<p>自作のCSSを見やすく整えてくれるツールです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wp-plan.com/tips/post343/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.wp-plan.com/tips/post343" />
	</item>
	</channel>
</rss>

