The image integration technology used by American YAHOO in page production. Although it takes a certain amount of time to regularly merge these icons, column backgrounds, and image buttons to facilitate CSS calls, it is definitely cost-effective and necessary. YSlow is also highly recommended. Copy code The code is as follows:<div class="max">Maximize</div> Both classes use the same image: Copy code The code is as follows:.max { width:16px; height:16px; background-image:url(/images/css-sprites.gif); background-repeat: no-repeat; //We don't want it to be tiled text-indent:-999em; //A way to hide text } The effect is that the image in tag_icon.gif in the above picture can only be used as the background, and the background we need cannot be obtained at all. Because we haven't specified background-position, the default is 00. You can see the picture above, which is the tag_icon.gif picture. Okay, we need to find the location of the image representing auther.gif in the big picture. After measurement, the button is located at 350px on the Y axis and the button is located at 50px on the x axis. How can we make them visible? Obviously the code is as follows: Copy code The code is as follows:.max { background-position: 50 -350px; } Yay, we did it: (Note: For the sake of convenience, this example directly embeds the style in HTML. Do not use this method unless it is a special case in practice). Advantages <br />We have learned from the previous part that the reason why CSSSprites suddenly became popular is that it can improve website performance. Obviously, this is one of its great advantages. A large number of pictures produced in the normal way are now merged into one picture, which greatly reduces the number of HTTP connections. The number of HTTP connections has a significant impact on the loading performance of the website. Disadvantages <br />As for maintainability, this is generally a double-edged sword. Some people may like it, while others may not, because every time you change the image, you have to delete or add content to the image, which seems a bit cumbersome. And calculating the position of pictures (especially pictures of thousands of pixels) is also a very unpleasant thing. Of course, these can be overcome under the slogan of performance. Since the position of the image needs to be fixed to a certain absolute value, this loses the flexibility such as center. As we mentioned earlier, we must limit the size of the box to use CSSSprites, otherwise it may interfere with the image. This means that CSSSprites are not suitable in some situations where non-unidirectional tiling backgrounds are required and web page scaling is required. YUI's solution is to increase the distance between images so that limited scaling can be maintained. Summary <br />Performance is everything. CSSSprites is a technology worth promoting. Especially suitable for FIR, such as fixed-size icon replacement. To maintain compatibility, it is a good idea to keep some distance between the parts of the image. |
<<: Implementation of one-click TLS encryption for docker remote api
>>: TypeScript uses vscode to monitor the code compilation process
Modern browsers no longer allow JavaScript to be ...
CSS3 -- Adding shadows (using box shadows) CSS3 -...
Related articles: Beginners learn some HTML tags ...
Of course, there are many people who hold the oppo...
MySql index detailed introduction and correct use...
Background - Online Alert An online server issued...
This article introduces in detail some of the tech...
1. What is it? MySQL is the most popular relation...
From: https://blog.csdn.net/qq_44761243/article/d...
The editor also shares with you the corresponding...
Uninstall the installed version on Ubuntu: sudo a...
The operating environment of this tutorial: Windo...
1. Check whether the MySQL service is started. If...
(1) Each HTML tag has an attribute style, which c...
Table of contents 1.Vue.js features: 2.Observer.j...