テキストのブロックを最初の行の黒から最後の行の薄い灰色にフェードしようとしています。Amazonが商品説明でこれを行っていることに気付きました。CSS コードを調べてみましたが、そこには何も表示されませんでした。javascript で実現されていると思われます。
私の質問は、自分のテキストブロックで同様の垂直フェード効果をエミュレートするにはどうすればよいですか?
テキストのブロックを最初の行の黒から最後の行の薄い灰色にフェードしようとしています。Amazonが商品説明でこれを行っていることに気付きました。CSS コードを調べてみましたが、そこには何も表示されませんでした。javascript で実現されていると思われます。
私の質問は、自分のテキストブロックで同様の垂直フェード効果をエミュレートするにはどうすればよいですか?
これは、 http : //www.colorzilla.com/gradient-editor/によって生成された完全なクロスブラウザー ソリューションです。
デモ: http://dabblet.com/gist/3511782
CSS:
#container {
width: 400px; /*width of text box*/
height: 200px; /*height of text box*/
border: 2px solid black; /*it needs some kind of border to look good*/
overflow: hidden; /*necessary to cut off text without scrollbars. alternatively you can use overflow: auto; or overflow: scroll; to show a scrollbar, but you'll have to tweak the #fader box*/
position: relative; /*positioning so that #fader can be relative to this*/
}
#fader {
height: 100px; /*from where it starts to fade to where it ends*/
position: absolute; /*so it can overlap the #container*/
width: 400px; /*has to be the same as #container*/
margin-top: 25%; /*position it right at the bottom of the #container*/
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
}
HTML:
<div id="container"><div id="fader"> </div>
Text goes here
</div>
IE9 をサポートするには、次の条件付きコメントが必要ですhead
。
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
ご参考までに、Amazon のやり方は非常に似ています: http://pastebin.com/jkq3nbDJ
したがって、あなたが持っているのは、絶対に配置された div (.fade-out
以下の私の例では) であり、垂直フェードまたは css3 グラデーションの背景 png を持つフェード効果の高さです。
HTML
<div class="description">
<p>Text Here</p>
<div class="fade-out"></div>
</div>
CSS
.description {
position: relative;
width: 100%;
}
.fade-out {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 2;
height: 30px;
background: ...
}
これにはさまざまな方法があります。たとえば、グラデーションの背景またはグラデーションである png を使用した絶対配置の div を使用します。