<?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>たねっぱ！ &#187; funeppa!</title>
	<atom:link href="https://taneppa.net/author/futappa_mif/feed/" rel="self" type="application/rss+xml" />
	<link>https://taneppa.net</link>
	<description>コツコツあつめるWeb作りのためのたね　たねっぱ！Web系情報ブログ　Webのお役立ちネタ配信中！</description>
	<lastBuildDate>Tue, 09 May 2023 00:02:06 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>CSSの display: inline、display: block、display: inline-block をマスターしよう！</title>
		<link>https://taneppa.net/display-inline-block/</link>
		<comments>https://taneppa.net/display-inline-block/#comments</comments>
		<pubDate>Tue, 17 Dec 2013 01:31:51 +0000</pubDate>
		<dc:creator>funeppa!</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[初心者向け]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=1501</guid>
		<description><![CDATA[ CSS の display プロパティについて紹介します！ display: inline・display: block・display: inline-blockについてのおさらい。HTMLとCSSひよこちゃん向け！]]></description>
				<content:encoded><![CDATA[
<p>いろいろ便利な CSS の display プロパティ。今回は</p>
<ul>
	<li>display: inline</li>
	<li>display: block</li>
	<li>display: inline-block</li>
</ul>
<p>についておさらいしてみます。HTMLひよこちゃん向けの記事です！</p>
<h2 style="margin: 40px auto 10px;">displayプロパティで、ブロック・インライン・インラインブロックをおさらいしてみた</h2>
<h3 style="margin: 40px auto 10px;">displayプロパティ</h3>
<p>displayは、要素の「表示形式」を指定するプロパティ。<br /> ブロックレベル要素をインライン形式で表示したり、インライン要素をブロックレベル形式で表示することができます。<br /> <strong>構造的にはブロックレベル要素なんだけど、インラインとして表示させた方が便利…（もちろんその逆も）</strong>なんてときに使います。</p>
<h3 style="margin: 40px auto 10px;">「はてさて、ブロック？？？インライン？？？」</h3>
<p>ではまずブロックレベル要素とインライン要素の表示の違いからカンタンに。知ってるよ、って人は飛ばしていいよ！</p>
<h4 style="margin: 20px auto 10px;"><span style="border-bottom: 2px dotted #a3d49a; font-size: 120%;">ブロックレベル要素</span></h4>
<p>文書の骨組みとなる要素です。見出し要素（h1, h2, h3…h6）、p、ul、ol、li、div、table など。<br /> 要素の前後に改行が入り、<strong>カチッとしたブロックを積んでいくような表示</strong>になります。<br /> こんなかんじ。</p>
<p style="background: #ffc867; border: solid 1px #fff;">p要素です</p>
<p style="background: #ffc867; border: solid 1px #fff;">p要素です</p>
<p style="background: #ffc867; border: solid 1px #fff;">p要素です</p>
<p>特徴はこんなかんじ。</p>
<ul>
	<li>縦に積まれていく</li>
	<li>幅 width と高さ height が指定できる</li>
	<li>上下左右に margin を指定できる</li>
	<li>上下左右に padding を指定できる</li>
	<li>text-align は要素の中身に適応される。</li>
	<li>vertical-align は指定できない。</li>
</ul>
<h4 style="margin: 20px auto 10px;"><span style="border-bottom: 2px dotted #a3d49a; font-size: 120%;">インライン要素</span></h4>
<p>ブロックレベル要素の中身として使われる要素です。a、span、strong など。<br /> テキストの一部として扱われるので、要素の前後には改行は入らず、<strong>テキスト状に横に横にずーっと流れていくような表示</strong>になります。<br /> こんなかんじ。</p>
<p style="background: #ffc867; border: solid 1px #fff;">p要素です<a style="border: solid 1px #F00;">pの中にいるa要素です</a><span style="border: solid 1px #00F;">pの中にいるspan要素です</span><strong style="border: solid 1px #0F0;">pの中にいるstrong要素です</strong></p>
<p>特徴はこんなかんじ。</p>
<ul>
	<li>横に並んでいく</li>
	<li>幅 width と高さ height は指定できない。幅や高さは文字列の長さや文字の大きさなど、内容物のサイズ。</li>
	<li>左右だけ margin を指定できる</li>
	<li>左右に padding を指定できる。（実は上下も指定できるけど、前後の行や要素にかぶってしまうので、あまり効果はわからない）</li>
	<li>text-align を親ブロックに付けることで指定できる。</li>
	<li>vertical-align を指定できる。</li>
</ul>
<h3 style="margin: 40px auto 10px;">ブロックレベル要素を display: inline してみよう</h3>
<p>代表的な使い方は、フッターナビゲーションのように、<strong>リストを横並びにして、かつ画面中央揃えにしたい</strong>場合。<br /> 例えばこんなかんじのリスト。</p>
<pre class="brush: xml; title: ; notranslate">
&lt;ul&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;HOME&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;会社概要&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;個人情報保護方針についてのお問合せ&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre><br /><br />
<p>li はブロックレベル要素なので、そのままだと縦積みされてしまいます。<br /> li を float させたところで、中央揃えにするには ul の幅を決めて margin: 0 auto にしなければいけませんが、中身がテキストなので幅が決めづらい…文字数や文字サイズが変わったら困っちゃうし…<br /> そこで、<strong>display: inline</strong>。インラインの特徴を思い出してみましょう。<br /> li に display: inline を指定し、ul に text-aline: center を指定します。</p>
<pre class="brush: xml; title: ; notranslate">
ul {text-align: center;}   &lt;!-- 中身をセンター揃えにして --&gt;
li {display: inline;}      &lt;!-- インラインで表示して --&gt;
</pre><br /><br />
<p>するとこんなかんじに。</p>
<div style="padding: 10px; border: 1px solid #ccc; background: #fff;">
<ul style="text-align: center;">
	<li style="display: inline; background: #ffc867; padding: 0;"><a href="#">HOME</a></li>
	<li style="display: inline; background: #ffc867; padding: 0;"><a href="#">会社概要</a></li>
	<li style="display: inline; background: #ffc867; padding: 0;"><a href="#">個人情報保護方針についてのお問合せ</a></li>
</ul>
</div>
<h3 style="margin: 40px auto 10px;">インライン要素を display: block してみよう</h3>
<p>さっきと同じリストを、こんどはサイドナビのように、縦並びにしたい場合。<br /> <strong>なんだそんなのカンタンじゃん！だって li はそのままで縦並びになるじゃん！</strong><br /> まあそうなんですけど、ちょっと問題が。↓のリストの右端の方にカーソルを持って行ってみましょう。</p>
<ul>
	<li style="background: #ffc867; border: solid 1px #fff; margin: 0; padding: 0;"><a href="#">HOME</a></li>
	<li style="background: #ffc867; border: solid 1px #fff; margin: 0; padding: 0;"><a href="#">会社概要</a></li>
	<li style="background: #ffc867; border: solid 1px #fff; margin: 0; padding: 0;"><a href="#">個人情報保護方針についてのお問合せ</a></li>
</ul>
<p>ね、縦並びにはなったけど、<strong>テキストのところしかクリックできない</strong>でしょ？ちょっと不便です。<br /> そこで、<strong>display: block</strong>。<br /> こんどは、インライン要素の a に display: block を指定します。（さっきの ul と li のスタイルは消しましょう。）</p>
<pre class="brush: xml; title: ; notranslate">
a {display: block;}   &lt;!-- ブロックで表示して --&gt;
</pre><br /><br />
<p>するとこんな感じに。右端の方にカーソルを持って行ってみましょう。こんどは<strong>端っこまでクリックできます</strong>よ。</p>
<ul>
	<li style="background: #ffc867; border: solid 1px #fff; margin: 0; padding: 0;"><a style="display: block;" href="#">HOME</a></li>
	<li style="background: #ffc867; border: solid 1px #fff; margin: 0; padding: 0;"><a style="display: block;" href="#">会社概要</a></li>
	<li style="background: #ffc867; border: solid 1px #fff; margin: 0; padding: 0;"><a style="display: block;" href="#">個人情報保護方針についてのお問合せ</a></li>
</ul>
<p>margin や padding も、a の上下左右に指定することができます。ブロックレベルの特徴を思い出してみましょう。</p>
<h3 style="margin: 40px auto 10px;">display: inline-block の良いトコロ</h3>
<p>さて、こんどは <strong>display: inline-block</strong> です。<br /> 「インラインってテキストみたいな感じでしょ、ブロックってブロックみたいな感じでしょ…え、<strong>インラインブロックって何さ？？</strong>」<br /> インラインブロックってこんな感じです。<br /> インライン要素のように<strong>横に並んで</strong>ブロック要素のように<strong>幅や高さ、margin や padding　を指定できます。</strong>、<br /> この特徴、何かに似てますよね。そう、img 要素です。<br /> ちなみに img 要素は「置換インライン要素」といって、「テキスト（＝インライン）を画像（＝幅や高さがある）に置き換えたもの」という扱いです。<br /> 特徴をまとめると、こんなかんじ。</p>
<ul>
	<li>横に並んでいく</li>
	<li>幅 width と高さ height が指定できる</li>
	<li>上下左右に margin を指定できる</li>
	<li>上下左右に padding を指定できる</li>
	<li>text-align を親ブロックに付けることで指定できる。</li>
	<li>vertical-align が指定できる。</li>
</ul>
<p>ページネーションのように、項目を<strong>横に並べて、かつボタンのように幅や高さをもたせて表示したい</strong>、なんて時に便利です。<br /> 例えばこんなかんじのリスト。</p>
<pre class="brush: xml; title: ; notranslate">
&lt;ul&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;1&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;2&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;3&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;4&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre><br /><br />
<p>こんなかんじで指定してみましょう。</p>
<pre class="brush: xml; title: ; notranslate">
ul {text-align: center;}     &lt;!-- ul の中身を中央揃えにして --&gt;
li {display: inline-block;}  &lt;!-- li をインラインブロックで表示して --&gt;
a  {display: block;          &lt;!-- a をブロックで表示して --&gt;
    width: 40px;}            &lt;!-- a に幅を指定 --&gt;
</pre><br /><br />
<div style="padding: 10px; border: 1px solid #ccc; background: #fff;">
<ul style="text-align: center;">
	<li style="display: inline-block; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">1</a></li>
	<li style="display: inline-block; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">2</a></li>
	<li style="display: inline-block; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">3</a></li>
	<li style="display: inline-block; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">4</a></li>
	<li style="display: inline-block; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">5</a></li>
</ul>
</div>
<p> <br /> せっかくなので、vertical-align も使ってみましょう。「3」だけ大きく表示して、かつ垂直方向下揃えにしてみましょう。</p>
<pre class="brush: xml; title: ; notranslate">
&lt;ul&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;1&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;2&lt;/a&gt;&lt;/li&gt;
   &lt;li class=&quot;current&quot;&gt;&lt;a href=&quot;#&quot;&gt;3&lt;/a&gt;&lt;/li&gt;   &lt;!--「3」だけサイズを変えるために class を付けました --&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;4&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;#&quot;&gt;5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<pre class="brush: xml; title: ; notranslate">
ul         {text-align: center;}     &lt;!-- ul の中身を中央揃えにして --&gt;
li         {display: inline-block;   &lt;!-- li をインラインブロックで表示して --&gt;
            vertical-align: bottom;} &lt;!-- li を垂直方向下揃えにして --&gt;
li.current {line-height: 4em;}       &lt;!-- class を付けた li だけ高さを大きくして --&gt;
a          {display: block;          &lt;!-- a をブロックで表示して --&gt;
            width: 40px;}            &lt;!-- a に幅を指定 --&gt;
</pre><br /><br />
<div style="padding: 10px; border: 1px solid #ccc; background: #fff;">
<ul style="text-align: center;">
	<li style="display: inline-block; vertical-align: bottom; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">1</a></li>
	<li style="display: inline-block; vertical-align: bottom; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">2</a></li>
	<li style="display: inline-block; vertical-align: bottom; line-height: 4em; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">3</a></li>
	<li style="display: inline-block; vertical-align: bottom; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">4</a></li>
	<li style="display: inline-block; vertical-align: bottom; background: #ffc867; padding: 0;"><a style="display: block; width: 40px;" href="#">5</a></li>
</ul>
</div>
<p> <br /> 応用として、こんなこともできます。高さが違うブロックレベル要素を、divで括らずに揃える。float も使ってません。</p>
<div style="padding: 10px; border: 1px solid #ccc; background: #fff; text-align: center;">
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">メロスは激怒した。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">必ず、かの邪智暴虐の王を除かなければならぬと決意した。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">メロスには政治がわからぬ。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">メロスは、村の牧人である。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">笛を吹き、羊と遊んで暮して来た。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">けれども邪悪に対しては、人一倍に敏感であった。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">きょう未明メロスは村を出発し、野を越え山越え、十里はなれた此このシラクスの市にやって来た。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">メロスには父も、母も無い。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">女房も無い。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">十六の、内気な妹と二人暮しだ。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">この妹は、村の或る律気な一牧人を、近々、花婿として迎える事になっていた。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">結婚式も間近かなのである。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">メロスは、それゆえ、花嫁の衣裳やら祝宴の御馳走やらを買いに、はるばる市にやって来たのだ。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">先ず、その品々を買い集め、それから都の大路をぶらぶら歩いた。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">メロスには竹馬の友があった。</p>
<p style="display: inline-block; width: 100px; vertical-align: top; border: solid 1px #ffc867; text-align: left;">セリヌンティウスである。</p>
</div>
<p><a href="http://www.aozora.gr.jp/cards/000035/card1567.html">青空文庫『走れメロス』太宰治</a></p>
<h3 style="margin: 40px auto 10px;">display: inline-block の困ったトコロ</h3>
<p>便利な display: inline-block ですが、ちょっと困ったことも。<br /> display: inline-block は、IE7 以下のオールドブラウザでは、a や span など、<strong>インライン要素に対してのみ対応</strong>しています<br /> え、じゃあ IE7 以下で、ブロックレベル要素に使うにはどうしたら？</p>
<pre class="brush: xml; title: ; notranslate">
li{
   display: inline-block;
   *display: inline;   &lt;!-- IE用のハックです --&gt;
   zoom: 1;            &lt;!-- IE用の hasLayout を true にするための記述です --&gt;
}
</pre><br /><br />
<p>ナンデコレデウマクイクノデスカ？<br /> これにはIEの「hasLayout」が関係しています。長くなりましたので、hasLayout については次回説明しましょう！</p>
]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/display-inline-block/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>レスポンシブでアニメーションも美しいWordPressテーマ11選</title>
		<link>https://taneppa.net/beautiful_responsive/</link>
		<comments>https://taneppa.net/beautiful_responsive/#comments</comments>
		<pubDate>Fri, 29 Nov 2013 11:00:33 +0000</pubDate>
		<dc:creator>funeppa!</dc:creator>
				<category><![CDATA[Web制作]]></category>
		<category><![CDATA[デザイン]]></category>
		<category><![CDATA[Webデザイン]]></category>
		<category><![CDATA[パララックスサイト]]></category>
		<category><![CDATA[レスポンシブ]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=1206</guid>
		<description><![CDATA[フラットデザイン、シングルページ、フルスクリーン、パララックス、Retina対応…　Webのトレンドを盛り込んだ見応えのあるWordPressテーマを集めてみました。

見栄えのするテーマはデザインやアニメーションの参考にもなりますね。

もちろんどれもレスポンシブ対応。PCでご覧の方はブラウザサイズを変えて変化を確認してみましょう！]]></description>
				<content:encoded><![CDATA[<div style="margin-bottom: 20px">
<h2>レスポンシブなWordPressテーマをあつめてみた</h2>
<p>レスポンシブデザインが話題になって久しいですね。<br />
レスポンシブやRetina対応はWordPressテーマでもホットなキーワードです。<br />
ワンソースでレスポンシブがベストな選択かどうかは案件によりけりでしょうが、トレンドはしっかり抑えておきたいところ。<br />
今回あえて有料のものばかりをチョイス。WordPressテーマを探すとき、ついつい無料のやつばっかり探しがちなんですが、こうやって有料のテーマを見るとさすがに見応えありますね。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">GE Trends</h3>
<p><a href="http://cb-theme.com/demo/?theme=getrends" target="_blank"><img alt="DeTrend" src="https://taneppa.net/wp-content/uploads/2013/11/DeTrend.jpg" width="600" height="450" /></a></p>
<p><a title="GE Trends- Responsive Voting WordPress Theme" href="http://cb-theme.com/demo/?theme=getrends" target="_blank">GE Trends- Responsive Voting WordPress Theme</a></p>
<p>シャープなアニメーションと美しいレイアウトが目を引く、ファッショナブルなテーマ。アパレル系のサイトなんかに良さそうです。</p>
<p>キービジュアルをスライドさせたときの円形メニューのはけ方も気持ちいい。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Dreamer</h3>
<p><a href="http://themeforest.net/item/dreamer-photo-video-parallax-wordpress-theme/full_screen_preview/5138260?ref=graphicdesignjunction" target="_blank"><img alt="Dreamer" src="https://taneppa.net/wp-content/uploads/2013/11/Dreamer.jpg" width="600" height="450" /></a></p>
<p><a title="Dreamer - Photo &amp; Video Parallax WordPress Theme" href="http://themeforest.net/item/dreamer-photo-video-parallax-wordpress-theme/full_screen_preview/5138260?ref=graphicdesignjunction" target="_blank">Dreamer &#8211; Photo &amp; Video Parallax WordPress Theme</a></p>
<p>長ーいシングルページでパララックス、というのももちろんポイントですが、使われてるフォントのバランス感も絶妙。</p>
<p>モノトーン＋オレンジの絞り込んだカラーで、文字のジャンプ率やレイアウトで魅せていくやり方は真似したいところ。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Realnews</h3>
<p><a href="http://ridwanstudio.com/demo/?product=Realnews" target="_blank"><img class="alignnone size-full wp-image-1265" alt="RealNews" src="https://taneppa.net/wp-content/uploads/2013/11/RealNews1.jpg" width="600" height="450" /></a></p>
<p><a href="http://ridwanstudio.com/demo/?product=Realnews" target="_blank">Realnews &#8211; Stylish and Responsive Magazine Theme</a></p>
<p>モノクロベースの、ニュースペーパーのようなデザイン。モノクロもWebデザイントレンドのひとつですね。</p>
<p>抑えたカラーと整然としたレイアウトが、知的な雰囲気を出しています。テキストメインの情報系サイトなんかにいいんじゃないでしょうか。</p>
<p>テキストが横にスクロールするやつも、こんなデザインだと株式速報みたいでNEWSな感じがするなーｗ</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">OneUp</h3>
<p><a href="http://demo.pixelentity.com/?oneup_wp" target="_blank"><img alt="OneUp" src="https://taneppa.net/wp-content/uploads/2013/11/OneUp1.jpg" width="600" height="338" /></a></p>
<p><a href="http://demo.pixelentity.com/?oneup_wp" target="_blank">OneUp &#8211; One Page Parallax Retina WordPress Theme</a></p>
<p>TwitterのBootstrapフレームワーク上に構築されたテーマ。</p>
<p>シングルページでパララックス、美しいデモページという見栄えもさることながら、ドラッグ＆ドロップでスピーディにページが作れちゃったりっていう使いやすさも魅力のようです。</p>
<p>ダウンロード上位の人気テーマです。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Salient</h3>
<p><a href="http://themeforest.net/item/salient-responsive-multipurpose-theme/full_screen_preview/4363266" target="_blank"><img alt="Salient" src="https://taneppa.net/wp-content/uploads/2013/11/Salient1.jpg" width="600" height="450" /></a></p>
<p><a title="Salient - Responsive Multi-Purpose Theme" href="http://themeforest.net/item/salient-responsive-multipurpose-theme/full_screen_preview/4363266" target="_blank">Salient &#8211; Responsive Multi-Purpose Theme</a></p>
<p>トップページの横幅いっぱいの動画がインパクト大。（いや、このおじさんがってことじゃなく。）</p>
<p>動画が動きながらのパララックスってあまり見かけないので、とても印象的です。（スマホサイズだとパララックスしないようになってます）</p>
<p>チュートリアル動画やカスタマイズのしやすさもあって、8000近いダウンロード数です。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Raw</h3>
<p><a href="http://wave-themes.com/demo/raw2/#home" target="_blank"><img class="alignnone size-full wp-image-1283" alt="Raw" src="https://taneppa.net/wp-content/uploads/2013/11/Raw1.jpg" width="600" height="450" /></a></p>
<p><a href="http://wave-themes.com/demo/raw2/#home" target="_blank">RAW &#8211; One &amp; Multi Page Multi-Purpose Theme</a></p>
<p>こちらも動画とパララックスの組み合わせの、シングルページのテーマ。</p>
<p>スクロールしていくと、いろんなところがアニメーションしながら表示されていきます。仕事が細かいな―。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Chroma</h3>
<p><a href="http://t2themes.com/themes/chroma/demo" target="_blank"><img class="alignnone size-full wp-image-1267" alt="Chroma" src="https://taneppa.net/wp-content/uploads/2013/11/Chroma.jpg" width="600" height="450" /></a></p>
<p><a title="Chroma - A Responsive Photography Theme" href="http://t2themes.com/themes/chroma/demo" target="_blank">Chroma &#8211; A Responsive Photography Theme</a></p>
<p>フルスクリーンが印象的な、写真を見せるのに適したテーマ。</p>
<p>アルバムには自動的に写真にウォーターマークをつける機能も。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Other</h3>
<p><a href="http://switcher.madeinebor.com/?theme=Other-WP" target="_blank"><img class="alignnone size-full wp-image-1269" alt="Other" src="https://taneppa.net/wp-content/uploads/2013/11/Other.jpg" width="600" height="344" /></a></p>
<p><a title="Other - Creative Photography WordPress Theme" href="http://switcher.madeinebor.com/?theme=Other-WP" target="_blank">Other &#8211; Creative Photography WordPress Theme</a></p>
<p>画像をタイル状に並べる「Masonry」のほか、細長い短冊状に並べる「Vertical」や「Horizontal」などのスタイルが選べ、いずれもグリッドを活かしたレイアウトが美しいテーマ。</p>
<p>画像メインのサイトやポートフォリオなんかに良さそうです。</p>
<p>マウスオーバーのアニメーションも気持ちいい。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Rush</h3>
<p><a href="http://themeforest.net/item/rush-multipurpose-creative-responsive-website/full_screen_preview/5123022" target="_blank"><img class="alignnone size-full wp-image-1276" alt="Rush" src="https://taneppa.net/wp-content/uploads/2013/11/Rush.jpg" width="600" height="450" /></a></p>
<p><a href="http://themeforest.net/item/rush-multipurpose-creative-responsive-website/full_screen_preview/5123022" target="_blank">Rush &#8211; Multipurpose Creative Responsive Website</a></p>
<p>「Recent Projects」や「Portfolio」などのページが用意された、ポートフォリオに適したテーマ。</p>
<p>ポートフォリオページはマウスオーバーするとサムネイルがぺろりとめくれたり、ちょっとした仕掛けが楽しい。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Wilder</h3>
<p><a href="http://themeforest.net/item/wilder-flat-one-page-responsive-wordpress-theme/full_screen_preview/5487594" target="_blank"><img src="https://taneppa.net/wp-content/uploads/2013/11/Wilder-500x375.jpg" alt="Wilder" width="500" height="375" class="alignnone size-medium wp-image-1318" /></a></p>
<p><a title="Wilder - Flat One Page Responsive WordPress Theme" href="http://themeforest.net/item/wilder-flat-one-page-responsive-wordpress-theme/full_screen_preview/5487594" target="_blank">Wilder &#8211; Flat One Page Responsive WordPress Theme</a></p>
<p>ワンページで、メニューを選択するとページ全体が横にスライドするパターンのテーマ。</p>
<p>中彩度色の色使いが素敵な、モダンなカラーリングです。</p>
<p>こういう、色相差が大きいのにシックにまとめる色使いは、日本のWebサイトではあまり見かけませんね。参考になります。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">Concept 1</h3>
<p><a href="http://themeforest.net/item/concept-1-modern-and-creative-wordpress-theme/full_screen_preview/4789870" target="_blank"><img alt="Consept1" src="https://taneppa.net/wp-content/uploads/2013/11/Consept1.jpg" width="600" height="450" /></a></p>
<p><a title="Concept 1 - Modern and Creative WordPress Theme" href="http://themeforest.net/item/concept-1-modern-and-creative-wordpress-theme/full_screen_preview/4789870" target="_blank">Concept 1 &#8211; Modern and Creative WordPress Theme</a></p>
<p>Bootstrapのフレームワークで構築されたモダンでクリーンな印象のテーマ。</p>
<p>シンプルなフラットデザインですが、一見単色に見える背景もよく見るとざらっとした質感のテクスチャを使っていたり、控えめなストライプやシャドウをうまく使っていたりするのは、取り入れたい小ワザです。</p>
</div>
<div style="margin-bottom: 20px">
<h3 style="margin-bottom: 10px">まとめ</h3>
<p>いかがでしたでしょうか？</p>
<p>こうやって見てみると、フルスクリーンで写真を使って、キャッチコピーや見出しをセンター揃え、というのが多くなってる印象です。</p>
<p>デバイスサイズがいろいろになって、センタリングのレイアウトがいろんなデバイスに対応しやすい、っていうのがあるのかもしれません。</p>
<p>Webフォントが当たり前になっているのも海外ならでは。日本語ももっとWebフォントが使いやすくなるといいですよね。</p>
<p>今回ご紹介したテーマはいずれも <a href="http://themeforest.net" target="_blank">themeforest</a> で購入可能ですが、 themeforest を覗いてみるだけでもずいぶん刺激になりました。</p>
<p>いずれも＄50前後で、思ったより安いんですねー。</p>
<p>がんばって themeforest で自作のテーマを販売する、なんていうのもアリかもしれませんね。</p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/beautiful_responsive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
