如何用css实现响应式全屏布局呢?满屏大图是当前比较流行的一种网页形式,本文将使用css的background-size属性,教您如何简单实现该效果。
核心概念
使用background-size 属性,填充整个viewport
当css属性background-size 值为cover时,浏览器会自动按比例缩放背景图的宽和高,直到大于或等于viewport的宽和高
使用媒体查询为移动设备提供更小尺寸的背景图
为什么要给移动设备提供小尺寸背景图呢?在demo中,我们看到的背景图的实际尺寸为5498px *
3615px,使用这么大尺寸图片的目的是满足绝大多数宽屏显示器,并且不会显示模糊,而代价就是1.7MB的图片体积。
但是在移动设备上没有必要使用这么大的图片,同时大图还会导致加载变慢,尤其是在移动网络下。
需要说明的是:为移动设备提供小背景图对该技术方案来说是可选的。
实践
HTML
word-wrap: break-word; position: static !important; padding: 0px !important; line-height: 1.1em !important; outline: invert none 0px !important; min-height: auto !important; width: auto !important; bottom: auto !important; float: none !important; height: auto !important; font-size: 10pt !important; vertical-align: baseline !important; top: auto !important; right: auto !important; left: auto !important; background-image: none; background-attachment: scroll; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0% 0%; background-repeat: repeat;">1 |
<!doctype html> |
4 | ...Your content goes here... |
后面我们会给body标签指定背景图,这样背景图就可以填充整个浏览器viewport了。
其实,该方案对所有的块级容器都可以生效。如果你的块级容器的宽高是动态的,那么背景图将自动伸缩,充满整个容器。
CSS body标签的样式如下:
03 | background-image:
url(images/background-photo.jpg); |
06 | background-position: center center; |
09 | background-repeat: no-repeat; |
12 | background-attachment: fixed; |
15 | background-size: cover; |
18 | background-color: #**46; |
上面最重要的一条就是:
这样浏览器就会按比例缩放背景图直至背景图宽高不小于容器的宽高(在上面的例子中,就是body标签)。
这里需要注意的一点就是:如果背景图小于body标签的尺寸(例如在高分辨率显示器上,或页面内容特别多时),浏览器会拉伸图片。我们都知道,当把一个图片拉伸时,图片会变模糊。
因此,在选择背景图时,要特别注意尺寸。为了照顾到大尺寸屏幕,demo里用的图片尺寸为5498px * 3615px 。
同时,为了让背景图始终相对于viewport居中,我们声明了:
1 | background-position: center center; |
上面的规则会把背景图缩放的原点定位到viewport的中心。
接下来我们需要解决的问题是:当内容的高度大于viewport的高度时,会出现滚动条。我们希望背景图始终相对于viewport固定,即使用户滚动时也是一样。
解决办法就是:
1 | background-attachment: fixed; |
(可选)使用媒体查询应对小屏幕
为了应对小屏幕,我用Photoshop将背景图按比例缩放到768px * 505px,然后通过smush.it
压缩图片体积。这样就将图片体积从1741KB降到114KB,节省了93%。
下面是媒体查询的写法:
1 | @media only screen and (max-width: 767px) { |
3 | background-image:
url(images/background-photo-mobile-devices.jpg); |
上面的媒体查询将max-width: 767px
设为断点,也就是说当浏览器viewport大于767px时,会使用大背景图,反之使用小背景图。
使用上面媒体查询不利的一面是,如果你把浏览器窗口从1200px缩小到640px(反之亦然),你会看到一个短暂的闪烁,因为小背景图或大背景图正在加载。
以上便是用css实现响应式全屏布局的代码,你学会了吗?赶快亲自动手操作一遍吧。