我想要一个背景是图像。图像必须是浏览器的全宽,并从顶部淡入,并使用渐变在底部淡出。我怎么能做到这一点?
答案 0 :(得分:2)
您可以将linear-gradient
组合与名为多重背景的功能结合使用。您只需要先将linear-gradient
指定为背景(使其位于顶部),然后将图像指定为第二个背景:
body {
background: linear-gradient(transparent, white),
url(http://transviet.com.vn/libs/images/Image/images/San-pham-Tour/Du-lich-trong-nuoc/Mien-Bac/Quang-Ninh/Sightseeing/halong1.jpg) center center no-repeat;
background-size:100% 100%;
}
这是working demo。
请注意,您可以更改white
颜色以使其以该颜色淡出。为了简单起见,我只使用linear-gradient
(当前浏览器支持),您可以为旧版本添加更多浏览器特定的前缀。
答案 1 :(得分:0)
html {
height: 100%;
background: #1e5799; /* Old browsers */
background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#7db9e8)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* IE10+ */
background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}