Get icon from single png image

2019-05-03 09:01发布

I have seen this so many times until now, but I never used myself. Can somebody explain how you can get specific icon picture from this single png image, for example the icons i selected with red ... using css

enter image description here

3条回答
男人必须洒脱
2楼-- · 2019-05-03 09:15

Using background shorthand for the positioning of image.

div {
    background:url(http://i.stack.imgur.com/mUhg1.png) -82px -104px;
    width:27px;
    height:27px;
}

http://jsfiddle.net/T2EtY/1/

查看更多
小情绪 Triste *
3楼-- · 2019-05-03 09:28

That is called CSS sprites. It is used to cut down the http requests. Basically all icons are placed on a single canvas and are used as background-image property and later they are mapped using CSS background-position property, so for example

.icon1 {
   background-image: url('YOUR_URL_HERE');
   background-position: 10px 10px; /* X and Y */
   height: 30px;
   width: 30px;
}

Demo

So inshort just define a fix height/width to your element, and than map the canvas using background-position property. Hence, if you have 100 small icon images on a page, it will make 100 requests to the server, thus to increase the performance, CSS Sprites are used.

查看更多
爱情/是我丢掉的垃圾
4楼-- · 2019-05-03 09:28
  1. Set a fixed (in pixels) height and width on an element
  2. Set the image as the background-image
  3. Adjust background-position so the part of the image you want to be visible is in view
查看更多
登录 后发表回答