【发布时间】:2016-04-14 19:28:52
【问题描述】:
所以使用这段代码
#grad1 {
height: 100px;
background: -webkit-linear-gradient(bottom, rgba(243,243,243,0), rgba(243,243,243,9)); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(top, rgba(243,243,243,0), rgba(243,243,243,9)); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(top, rgba(243,243,243,0), rgba(243,243,243,9)); /* For Firefox 3.6 to 15 */
background: linear-gradient(to top, rgba(243,243,243,0), rgba(243,243,243,9)); /* Standard syntax (must be last) */
}
我能够完成一个 css 背景渐变来淡出,但我只是想让最底部淡出。
我有一个固定的标题,希望它在底部淡出以便更流畅地滚动。
有什么想法吗?
【问题讨论】: