Implementing image sprites in CSS - CSS: Cascading Style Sheets 编辑
Image sprites are used in numerous web apps where multiple images are used. Rather than include each image as a separate image file, it is much more memory- and bandwidth-friendly to send them as a single image; using background position as a way to distinguish between individual images in the same image file, so the number of HTTP requests is reduced.
Note: When using HTTP/2, it may in fact be more bandwidth-friendly to use multiple small requests.
Implementation
Suppose an image is given to every item with class toolbtn
:
.toolbtn {
background: url(myfile.png);
display: inline-block;
height: 20px;
width: 20px;
}
A background position can be added either as two x, y values after the url()()
in the background, or as background-position
. For example:
#btn1 {
background-position: -20px 0px;
}
#btn2 {
background-position: -40px 0px;
}
This would move the element with the ID 'btn1' 20 pixels to the left and the element with the ID 'btn2' 40 pixels to the left (assuming they have the class toolbtn
assigned and are affected by the image rule above).
Similarly, you can also make hover states with:
#btn:hover {
background-position: <pixels shifted right>px <pixels shifted down>px;
}
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论