浏览 2630 次
锁定老帖子 主题:CSS 技巧之一 CSS Sprite
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2010-01-25
最后修改:2010-01-25
首先看下面的 CSS 代码: li#nav-home a { background:url(../images/navs.png) no-repeat; } li#nav-about a { background:url(../images/navs.png) 0 -28px no-repeat; } li#nav-work a { background:url(../images/navs.png) 0 -56px no-repeat; } li#nav-services a { background:url(../images/navs.png) 0 -84px no-repeat; } li#nav-contact a { background:url(../images/navs.png) 0 -112px no-repeat; } li#nav-home a:hover { background:url(../images/navs.png) 0 -13px no-repeat; } li#nav-about a:hover { background:url(../images/navs.png) 0 -41px no-repeat; } li#nav-work a:hover { background:url(../images/navs.png) 0 -69px no-repeat; } li#nav-services a:hover { background:url(../images/navs.png) 0 -97px no-repeat; } li#nav-contact a:hover { background:url(../images/navs.png) 0 -125px no-repeat; } li#nav-home a.active { background:url(../images/navs.png) 0 -13px no-repeat; } li#nav-about a.active { background:url(../images/navs.png) 0 -41px no-repeat; } li#nav-work a.active { background:url(../images/navs.png) 0 -69px no-repeat; } li#nav-services a.active { background:url(../images/navs.png) 0 -97px no-repeat; } li#nav-contact a.active { background:url(../images/navs.png) 0 -125px no-repeat; }
是不是看的眼花缭乱,不知所云,其实这段css很简单,就是实现所谓的 CSS Sprite 技术。
background:url(../images/navs.png) 0 -13px no-repeat;
查看Demo,请点击这里
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |