diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-14 23:03:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 23:03:58 +0900 |
commit | 57c4aff2c8160b2d5ebb7302874ba0d7f3fedf02 (patch) | |
tree | 1474a1556c2a424b38813183bab570529ff39c90 /files/ja/web/css/cross-fade() | |
parent | 192e9f4e82a2ad89ac985e715d63b70be9bf5996 (diff) | |
download | translated-content-57c4aff2c8160b2d5ebb7302874ba0d7f3fedf02.tar.gz translated-content-57c4aff2c8160b2d5ebb7302874ba0d7f3fedf02.tar.bz2 translated-content-57c4aff2c8160b2d5ebb7302874ba0d7f3fedf02.zip |
Web/CSS以下の文書内のリンクURLを正規化 (#2368)
- /en-US へのリンクを /ja へのリンクに修正
- /ja が付いていないものに /ja を付加
- MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正
Diffstat (limited to 'files/ja/web/css/cross-fade()')
-rw-r--r-- | files/ja/web/css/cross-fade()/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/css/cross-fade()/index.html b/files/ja/web/css/cross-fade()/index.html index f29ec46d8b..5cf8359073 100644 --- a/files/ja/web/css/cross-fade()/index.html +++ b/files/ja/web/css/cross-fade()/index.html @@ -62,7 +62,7 @@ cross-fade( url(red.png) 33.33%, url(yellow.png) 33.33%, url(blue.png) 33.33%);< <pre class="syntaxbox notranslate">cross-fade( <image, <image>, <percentage> )</pre> -<p>The specification for the <code>cross-fade()</code> function allows for multiple images and for each image to have transparency values independent of the other values. This was not always the case. The <a href="/en-US/docs/">original syntax</a>, which has been implemented in some browsers, only allowed for two images, with the sum of the transparency of those two images being exactly 100%. The original syntax is supported in Safari and supported with the <code>-webkit-</code> prefix in Chrome, Opera, and other blink-based browsers.</p> +<p>The specification for the <code>cross-fade()</code> function allows for multiple images and for each image to have transparency values independent of the other values. This was not always the case. The <a href="/ja/docs/">original syntax</a>, which has been implemented in some browsers, only allowed for two images, with the sum of the transparency of those two images being exactly 100%. The original syntax is supported in Safari and supported with the <code>-webkit-</code> prefix in Chrome, Opera, and other blink-based browsers.</p> <pre class="brush: css notranslate">cross-fade(url(white.png), url(black.png), 0%); /* fully black */ cross-fade(url(white.png), url(black.png), 25%); /* 25% white, 75% black */ |