HTML网页精灵图的使用

精灵图的使用

我们在制作网页的时候有些图片是在一起的,没有办法进行插入图片,这样精灵图的使用就帮助我们解决了这一问题。一下方式为例:

图片:

HTML网页精灵图的使用_第1张图片

精灵图使用的代码图片:

HTML网页精灵图的使用_第2张图片     

具体为:

.good{
    height:30px;
    margin-left:-5px;
    background:url(image/icon.gif) no-repeat;
    background-position:-3px -130px;}
.safety{
    height:36px;
    margin-left:-5px;
    background:url(image/icon.gif) no-repeat;
    background-position:0px -166px;}
	.free{
    height:30px;
    margin-left:-5px;
    background:url(image/icon.gif) no-repeat;
    background-position:0px -209px;}
	.people{
    height:35px;
    margin-left:-5px;
    background:url(image/icon.gif) no-repeat;
    background-position:0px -245px;}

这是进行对图片的操作,插入图片然后设置其宽高以及你所需要的图片在整体图片的什么位置,也就是他的坐标轴。

之后呢就是你要把图片插入到什么位置,在位置上进行插图:

因为我用的是

    ,所以我在ol中输入class。

    效果图如例:

    HTML网页精灵图的使用_第3张图片

    精灵图主要就只有三句:宽/高、 背景图,坐标。

    宽/高 :

    width:36px;

     height:30px;

    背景图:

    background:url(image/icon.gif) no-repeat;

    坐标:

    background-position:-3px -130px;

    你可能感兴趣的:(HTML网页制作)