网页背景等比例缩放写法(适用于手机页面制作及其支持CSS3网站制作),最近接触手机网站制作前端工作越来越多了,在制作图片等比例缩放,通常用js获取图片比例实现效果。其实CSS3属性支持网页背景等比例缩放。
一、可以设置如下属性:
-
background-color
-
background-position
-
background-size
-
background-repeat
-
background-origin
-
background-clip
-
background-attachment
-
background-image
如果不设置其中的某个值,也不会出问题,比如 background:#ff0000; 也是允许的。
二、属性对应值设置:
-
background-color定要使用的背景颜色。
-
background-position规定背景图像的位置。
-
background-size规定背景图片的尺寸。CSS3属性
-
background-repeat规定如何重复背景图像。
-
background-origin规定背景图片的定位区域。CSS3属性
-
background-clip规定背景的绘制区域。CSS3属性
-
background-attachment规定背景图像是否固定或者随着页面的其余部分滚动。
-
background-image规定要使用的背景图像。
请用IE9以上及支持CSS3属性浏览器测试效果:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>网页背景等比例缩放写法</title>
</head>
<body style="background:url(http://www.internetke.com/uploads/allimg/140421/1-14042122195O93.jpg) no-repeat left top / cover;">
</body>
</html>