首先来简朴说一下什么是Sprites,Sprites是一种网页图片应用处理惩罚方法。它答允你将一个页面涉及到的所有零散图片都包括到一张大图中去,这样一来,当会见该页面时,载入的图片就不会像以前那样一幅一幅地逐步显示出来了。对付当前网络风行的速度而言,不高于200KB的单张图片的所需载入时间根基是差不多的,所以无需忌惮这个问题。
第一步:建设我们的 Sprite
用PS等东西合成如图所示的图片(以一个像素的红线来区分)
第二步:编写HTML代码
首先,我们会给容器 div 一个 .roundedBox类 :
复制代码 代码如下:
<div></div>
此刻,我们必需再增加四个div ,这会在未来建设圆角的时候用到。之后必需给每个加载一个类 .corner,同时也标识一个类来指定它们格子的位置。
复制代码 代码如下:
<div>
<strong>My content in roundedBox Type 1</strong>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
第三步:编写CSS样式
绝对定位元素凡是都依拍照对定位的父元素举办定位。假如这个父元素无法界定,那么它会去最近作相对定位的谁人父元素,直至 body 标签。
让我们先来界说下所有的圆角
所有的圆角都必需界说绝对定位,而且注明高度跟宽度。 我的圆角界说的宽度跟高度都是 17px.
复制代码 代码如下:
.corner{position:absolute;width:17px;height:17px;}
此刻开始界说 div 容器样式:
复制代码 代码如下:
.roundedBox {position:relative;}
任何界说有类 .roundedBox 的元素内,绝对定位元素城市相对付这个元素举办定位,而不是标签 body。 我们也必需配置一些padding值,假如没有配置,圆角将会包围我们的文本,这必定不是我们想要的结果。 重要提示: top 和 bottom padding 值必需 等价于圆角的 height。left 和 right padding 值必需等价于圆角的宽度。 正如您已经知道的,我的圆角宽度跟高度是相等的,因此,四个边角的padding 值也是相等的:
复制代码 代码如下:
.roundedBox {position:relative; padding:17px; margin:10px 0;}
让我们对没有圆角作单独界说
我们会对每个圆角作绝对定位配置,而且定位配景图的位置 (按照我们的 sprite):
复制代码 代码如下:
.roundedBox {position:relative; padding:17px; margin:10px 0;}
.corner {position:absolute; width:17px; height:17px;}
.topLeft {top:0; left:0; background-position:-1px -1px;}
.topRight {top:0; right:0; background-position:-19px -1px;}
.bottomLeft {bottom:0; left:0; background-position:-1px -19px;}
.bottomRight {bottom:0; right:0; background-position:-19px -19px;}
最后,给 #type1 匹配一个配景致,使之融合于 sprite 中的圆角:
复制代码 代码如下:
#type1 {background-color:#CCDEDE;}
#type1 .corner {background-image:url(../image/corners.gif);}
全部的代码:
复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.roundedBox {position:relative; padding:17px; margin:10px 0;}
.corner {position:absolute; width:17px; height:17px;}
.topLeft {top:0; left:0; background-position:-1px -1px;}
.topRight {top:0; right:0; background-position:-19px -1px;}
.bottomLeft {bottom:0; left:0; background-position:-1px -19px;}
.bottomRight {bottom:0; right:0; background-position:-19px -19px;}
#type1 {background-color:#CCDEDE;}
#type1 .corner {background-image:url(../image/corners.gif);}
</style>
</head>
<body>
<div>
<strong>My content in roundedBox Type 1</strong>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
您大概感乐趣的文章: