diff options
Diffstat (limited to 'files/ja/conflicting')
2 files changed, 0 insertions, 179 deletions
diff --git a/files/ja/conflicting/web/css/css_backgrounds_and_borders/resizing_background_images/index.html b/files/ja/conflicting/web/css/css_backgrounds_and_borders/resizing_background_images/index.html deleted file mode 100644 index f977767419..0000000000 --- a/files/ja/conflicting/web/css/css_backgrounds_and_borders/resizing_background_images/index.html +++ /dev/null @@ -1,104 +0,0 @@ ---- -title: 背景画像の拡大縮小 -slug: conflicting/Web/CSS/CSS_Backgrounds_and_Borders/Resizing_background_images -translation_of: Web/CSS/CSS_Backgrounds_and_Borders/Resizing_background_images -translation_of_original: Web/CSS/CSS_Background_and_Borders/Scaling_background_images -original_slug: Web/CSS/Scaling_background_images ---- -<p>CSS の {{cssxref("background-size")}} プロパティによって、フルサイズの画像がタイル状に配置されるという既定の動作の代わりに、背景画像のサイズを調節することができるようになります。画像を望むように拡大または縮小することができます。</p> - -<h2 id="Tiling_a_large_image" name="Tiling_a_large_image">大きな画像をタイル状に配置する</h2> - -<p>1233 × 1233 の大きな Firefox のロゴ画像を考えてみましょう。 300 × 300 四方に、この画像の 4 つのコピーをタイル状に配置したい(ぞっとするほど悪いサイトデザインを含むいくつかの理由で)場合、結果としてこうなります。</p> - -<p><img alt="screenshot1.png" class="default internal" src="/@api/deki/files/4001/=screenshot1.png"></p> - -<p>これは以下の CSS を使うことで達成されます。</p> - -<pre class="brush: css; highlight:[8]">.square { - width: 300px; - height: 300px; - background-image: url(fxlogo.png); - border: solid 2px; - text-shadow: white 0px 0px 2px; - font-size: 16px; - background-size: 150px; -} -</pre> - -<p>もし、とても古いブラウザをターゲットにするのであれば、いくつかの接頭辞を付したバージョンを加えることを考えるかもしれませんが、もう {{cssxref("background-size")}} に接頭辞を付すことは必要ありません。</p> - -<h2 id="Stretching_an_image" name="Stretching_an_image">画像を引き伸ばす</h2> - -<p>以下のように、画像の水平方向と垂直方向の両方のサイズを記述することもできます。</p> - -<pre class="brush:css">background-size: 300px 150px; -</pre> - -<p>その結果はこのようになります。</p> - -<p><img alt="screenshot3.png" class="default internal" src="/@api/deki/files/4003/=screenshot3.png"></p> - -<h2 id="Scaling_an_image_up" name="Scaling_an_image_up">画像を拡大する</h2> - -<p>この範囲のもう 1 つの終端では、画像を背景の中で拡大することができます。 ここで、300 × 300 ピクセルに 16 × 16 ピクセルの favicon を拡大します。</p> - -<p><img alt="screenshot2.png" class="default internal" src="/@api/deki/files/4002/=screenshot2.png"></p> - -<pre class="brush: css; highlight:[5]">.square2 { - width: 300px; - height: 300px; - background-image: url(favicon.png); - background-size: 300px; - border: solid 2px; - text-shadow: white 0px 0px 2px; - font-size: 16px; -} -</pre> - -<p>ご覧のとおり、 CSS は実際には本質的に同一で、画像ファイル名は安全です。</p> - -<h2 id="Special_values.3A_.22contain.22_and_.22cover.22" name="Special_values.3A_.22contain.22_and_.22cover.22">特別な値の「contain」と「cover」</h2> - -<p>CSS の {{cssxref("background-size")}} には、 {{cssxref("<length>")}} の値の他に、 <code>contain</code> と <code>cover</code> の 2 つの特別なサイズの値が提示されています。これらについて見てみましょう。</p> - -<h3 id="contain" name="contain">contain</h3> - -<p>contain は、コンテナとなるボックスのサイズにかかわらず、背景画像は コンテナの対応する辺の長さを超えないように、可能な限り大きくなるようにそれぞれの辺を拡大縮小されるべきことを指定します。下記の実演中の例からこのことを確認するため、 Firefox 3.6 以降のような、背景画像の拡大縮小に対応したブラウザを使って、ウィンドウのサイズを変えてみて下さい。</p> - -<div style="width: 100%; height: 200px; border: solid 2px;"> -<p>このウィンドウのサイズを変えて、何が起こるかを見て下さい。</p> -</div> - -<p>上の例の CSS は以下のようなものです。</p> - -<pre class="brush: css; highlight:[4]">width: 100%; -height: 200px; -background-image: url(https://developer.mozilla.org/files/2917/fxlogo.png); -background-size: contain; -border: solid 2px; -</pre> - -<h3 id="cover" name="cover">cover</h3> - -<p>cover は、背景画像の両方の寸法が、コンテナの対応するサイズより大きくなる、または同じになることを確保しつつ、背景画像を可能な限り小さい大きさになるべきことを指定します。</p> - -<div style="width: 100%; height: 200px; border: solid 2px;"> -<p>このウィンドウのサイズを変えて、何が起こるかを見て下さい。</p> -</div> - -<p>この例では以下の CSS を使用しています。</p> - -<pre class="brush: css; highlight:[4]">width: 100%; -height: 200px; -background-image: url(https://developer.mozilla.org/files/2917/fxlogo.png); -background-size: cover; -border: solid 2px; -</pre> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{cssxref("background-size")}}</li> - <li>{{cssxref("background")}}</li> -</ul> diff --git a/files/ja/conflicting/web/css/css_backgrounds_and_borders/using_multiple_backgrounds/index.html b/files/ja/conflicting/web/css/css_backgrounds_and_borders/using_multiple_backgrounds/index.html deleted file mode 100644 index 863b8661e9..0000000000 --- a/files/ja/conflicting/web/css/css_backgrounds_and_borders/using_multiple_backgrounds/index.html +++ /dev/null @@ -1,75 +0,0 @@ ---- -title: CSS での複数の背景の利用方法 -slug: conflicting/Web/CSS/CSS_Backgrounds_and_Borders/Using_multiple_backgrounds -tags: - - CSS - - CSS Background - - Example - - Guide - - Intermediate -translation_of: Web/CSS/CSS_Backgrounds_and_Borders/Using_multiple_backgrounds -translation_of_original: Web/CSS/CSS_Background_and_Borders/Using_CSS_multiple_backgrounds -original_slug: Web/CSS/CSS_Background_and_Borders/Using_CSS_multiple_backgrounds ---- -<p id="Summary">{{CSSRef}}</p> - -<p>CSS3 より、要素に複数の背景を適用できるようになりました。複数の背景は、最初に指定した背景が最前面、最後に指定した背景が最も奥のレイヤーになるように、重ねて描画されます。</p> - -<p>複数の背景は、以下の様に各レイヤーをカンマで区切る事だけの簡単な構文で記述可能です。</p> - -<pre class="syntaxbox">.myclass { - background: 背景1, 背景2, ..., 背景N; -}</pre> - -<p>この方法は、ショートハンドプロパティの {{cssxref("background")}} でも、{{cssxref("background-color")}} 以外の個別のプロパティ(※{{ cssxref("background-attachment") }}, {{ cssxref("background-clip") }},<code> </code>{{ cssxref("background-image") }}, {{ cssxref("background-origin") }}, {{ cssxref("background-position") }}, {{ cssxref("background-repeat") }}, {{ cssxref("background-size") }}) のどちらでも利用可能です。</p> - -<h2 id="Example" name="Example">例</h2> - -<p>次の例では、上位レイヤーから</p> - -<ol> - <li>Firefox のロゴ</li> - <li><a href="/ja/CSS/linear-gradient" title="linear-gradient">線形グラデーション</a></li> - <li>花の画像</li> -</ol> - -<p>の順で、3 つの背景が重ねられています。記述量が多くなる場合は、例の様にカンマ毎に改行するとコードが読みやすくなるかもしれません。</p> - -<pre class="brush: css">.multi_bg_example { - background-image: - url("http://demos.hacks.mozilla.org/openweb/resources/images/logos/firefox-48.png"), /* 最前面の背景レイヤーの背景画像 */ - linear-gradient( to right, rgba(255,255,255,0), #fff ), - url("http://demos.hacks.mozilla.org/openweb/resources/images/patterns/flowers-pattern.jpg"); - - background-repeat: - no-repeat, /* 最前面の背景レイヤーに対応 */ - no-repeat, - repeat; - - background-position: - bottom right, /* 最前面の背景レイヤーに対応 */ - left, - right; -}</pre> - -<table class="standard-table"> - <tbody> - <tr> - <td class="header">スクリーンショット</td> - </tr> - <tr> - <td><img alt="css_multibg.png" src="/@api/deki/files/4028/=css_multibg.png"></td> - </tr> - </tbody> -</table> - -<p>スクリーンショットで表示されているとおり、最初に記述した Firefox のアイコン画像が最前面、次にグラデーション、最後に花の画像が重ねて描画されます。 {{cssxref("background-repeat")}} と {{cssxref("background-position")}} に指定した複数の値は、それぞれ <code>background-image</code> で記述した各値に対し、同じ順番で適用されます。つまり、<code>background-image</code> の最初の値として指定した FireFox のアイコンの画像に対し、<br> - {{cssxref("background-repeat")}} は "<code>bottom left</code>"、<br> - {{cssxref("background-position")}} は "<code>no-repeat</code>"<br> - が適用され、その結果、Firefox のアイコンの画像は、最前面のレイヤーの<em>右下に</em>、<em>ひとつだけ</em> 表示されるのです。</p> - -<h2 id="See_also" name="See_also">関連記事</h2> - -<ul> - <li><a href="/ja/docs/CSS/Using_CSS_gradients" title="グラデーションの利用">グラデーションの利用</a></li> -</ul> |