diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-06 22:54:12 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-13 22:29:55 +0900 |
commit | f60a53da484cf2f9622de48578119a39d6be5eb5 (patch) | |
tree | 39ac65c2f627ffb859f6207454e8f624b3f2d45c /files | |
parent | f743736316419f4c83b7b7d76a1c5865b70f0094 (diff) | |
download | translated-content-f60a53da484cf2f9622de48578119a39d6be5eb5.tar.gz translated-content-f60a53da484cf2f9622de48578119a39d6be5eb5.tar.bz2 translated-content-f60a53da484cf2f9622de48578119a39d6be5eb5.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/css/filter-function/sepia()/index.md | 84 |
1 files changed, 38 insertions, 46 deletions
diff --git a/files/ja/web/css/filter-function/sepia()/index.md b/files/ja/web/css/filter-function/sepia()/index.md index eecc53bb3e..e3708e8cbe 100644 --- a/files/ja/web/css/filter-function/sepia()/index.md +++ b/files/ja/web/css/filter-function/sepia()/index.md @@ -3,65 +3,57 @@ title: sepia() slug: Web/CSS/filter-function/sepia() tags: - CSS - - CSS Function - - Filter Effects - - Function - - Reference + - CSS 関数 + - フィルター効果 + - 関数 + - リファレンス +browser-compat: css.types.filter-function.sepia translation_of: Web/CSS/filter-function/sepia() --- -<div>{{cssref}}</div> +{{CSSRef}} -<p><strong><code>sepia()</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の関数で、入力画像をセピア色に、より暖かい、より黄色と茶色の表現に変換します。結果は {{cssxref("<filter-function>")}} です。</p> +**`sepia()`** は [CSS](/ja/docs/Web/CSS) の[関数](/ja/docs/Web/CSS/CSS_Functions)で、入力画像をセピア色に、より暖かい、より黄色/茶色がかったの表現に変換します。結果は {{cssxref("<filter-function>")}} です。 -<div>{{EmbedInteractiveExample("pages/css/function-sepia.html")}}</div> +{{EmbedInteractiveExample("pages/css/function-sepia.html")}} -<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> +```css +sepia(amount) +``` -<pre class="syntaxbox notranslate">sepia(<var>amount</var>)</pre> +### 引数 -<h3 id="Parameters" name="Parameters">引数</h3> +- `amount` + - : 変換の度合いで、 {{cssxref("<number>")}} または {{cssxref("<percentage>")}} で指定します。 `100%` の値では完全にセピア色になり、 `0%` の値では入力が変更されないままになります。 `0%` と `100%` の間の値は、効果の割合です。補間時の欠損値は `0` です。 -<dl> - <dt><code><var>amount</var></code></dt> - <dd>変換の度合いで、 {{cssxref("<number>")}} 又は {{cssxref("<percentage>")}} で指定します。 <code>100%</code> の値では完全にセピア色になり、 <code>0%</code> の値では入力が変更されないままになります。 <code>0%</code> と <code>100%</code> の間の値は、効果の割合です。補間時の欠損値は <code>0</code> です。</dd> -</dl> +## 例 -<h2 id="Examples" name="Examples">例</h2> +### sepia() の正しい値の例 -<pre class="brush: css notranslate">sepia(0) /* 効果なし */ +```css +sepia(0) /* 効果なし */ sepia(.65) /* 65% セピア色 */ -sepia(100%) /* 完全にセピア色 */</pre> +sepia(100%) /* 完全にセピア色 */ +``` -<h2 id="仕様書">仕様書</h2> +## 仕様書 -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('Filters 1.0', '#funcdef-filter-sepia', 'sepia()')}}</td> - <td>{{Spec2('Filters 1.0')}}</td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="See_also" name="See_also">関連情報</h2> +## ブラウザーの互換性 -<ul> - <li>{{cssxref("<filter-function>")}}</li> - <li>{{cssxref("filter-function/blur", "blur()")}}</li> - <li>{{cssxref("filter-function/brightness", "brightness()")}}</li> - <li>{{cssxref("filter-function/contrast", "contrast()")}}</li> - <li>{{cssxref("filter-function/drop-shadow", "drop-shadow()")}}</li> - <li>{{cssxref("filter-function/grayscale", "grayscale()")}}</li> - <li>{{cssxref("filter-function/hue-rotate", "hue-rotate()")}}</li> - <li>{{cssxref("filter-function/invert", "invert()")}}</li> - <li>{{cssxref("filter-function/opacity", "opacity()")}}</li> - <li>{{cssxref("filter-function/saturate", "saturate()")}}</li> -</ul> +{{Compat}} + +## 関連情報 + +- {{cssxref("<filter-function>")}} +- {{cssxref("filter-function/blur()", "blur()")}} +- {{cssxref("filter-function/brightness()", "brightness()")}} +- {{cssxref("filter-function/contrast()", "contrast()")}} +- {{cssxref("filter-function/drop-shadow()", "drop-shadow()")}} +- {{cssxref("filter-function/grayscale()", "grayscale()")}} +- {{cssxref("filter-function/hue-rotate()", "hue-rotate()")}} +- {{cssxref("filter-function/invert()", "invert()")}} +- {{cssxref("filter-function/opacity()", "opacity()")}} +- {{cssxref("filter-function/saturate()", "saturate()")}} |