私があなたを正しく理解していれば、次のようなものが必要です:
https://dl.dropbox.com/u/73603348/fadeout.html
私が過去に行ったことは、スクロールするコンテンツの下部にオーバーレイ要素を作成することです。ものすごく単純。
マークアップ:
<div class="content">
<div class="container">
[ content here ]
</div>
<div class="fader"></div>
</div>
スタイル:
.content {
width: 600px;
background: #fff;
margin: 50px auto 0;
overflow: auto;
position: relative;
}
.container {
height: 500px;
overflow: auto;
padding: 10px;
background: #ccc;
}
.fader {
position: absolute;
content: '';
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: -webkit-linear-gradient(top, rgba(255,255,255,0), #fff);
}