CSS sprites technology integrates multiple backgrounds into one PNG image CSS positioning

CSS sprites technology integrates multiple backgrounds into one PNG image CSS positioning

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.

Implementation method :
First, integrate the small images into a large image, and then position the background according to the position of the specific icon on the large image. background-position:-8px -95px;
A brief discussion on CSS Sprites technology and image optimization (background image integration)
How much can we do to optimize CSS Sprites technology and how much can we reduce the number of requests? This cannot be done unilaterally; it all depends on the coordination between XHTML, CSS, and CSS Sprites images. There is no absolutely optimized method so far. This is why I often weigh the relationship between CSS Sprites images and XHTML in my projects, such as: "A background to achieve adaptive nine-square grid". The following summarizes some methods of image cutting and image optimization.

Image optimization <br />1. For non-animated GIFs, it is recommended to use PNG8 because it can achieve the same effect and can save you 10%-30% of the file size.
2. Compared with Fireworks, PNG images of the same quality exported from Photoshop will be slightly larger in size. Although Fireworks has made corresponding compression optimizations, it has not achieved the best compression.
3. As far as I know, the design software that handles PNG images has not achieved the best compression, and there is still room for compression of the image size. You can try using the "Image Optimization Tool" introduced below to do lossless compression optimization.
4. Regarding the image size and dimensions, it is recommended that the size be kept within 100K (which is more in line with the best requested SIZE in China) and the size be 800px (the best size). (Learned from an authoritative source, but the details cannot be verified)

CSS Sprites image cutting technique <br />1. CSS Sprites image order and images are added from top to bottom and left to right. The background-position is generally positioned in the form of a digital combination, which can reduce unnecessary trouble caused by maintenance.
2. It is not recommended to maintain a certain spacing in CSS Sprites images because the file size will increase.
3. Combining images with similar or identical colors in CSS Sprites can reduce the number of colors, because the file size of images with fewer colors will be relatively small.
4. Leaving large gaps in CSS Sprites images of the same size will increase the volume to a certain extent in most cases, so there should be no gaps in CSS Sprites images.
5. Among CSS Sprites images of the same size, images arranged vertically will be larger in size than those arranged horizontally.
6. In CSS Sprites images, horizontally arranged images will have larger file sizes than vertically arranged images.
7. Merge equivalent images: When using CSS Sprites images, appropriately merge equivalent images to save space and reduce volume.
8. Distinguish images that do not need to be merged: If the current user determines to display only one state or one level, there is no need to merge images of other levels or states.
9. Golden cutting position: The rightmost or leftmost position of the CSS Sprites image is the most flexible position and is most suitable for placing the icon in front of the text. Therefore, it will not be interfered by other CSS Sprites images, and there is no need to reserve a certain line width.

There are many related image optimization tools circulating on the Internet, such as:
ImageMagick, PNGGauntlet, pngcrush, pngrewrite, Optipng, PNGOut, etc.
As we all know, one of the most effective ways to reduce website loading time is to reduce the number of HTTP requests made by the website. An effective way to achieve this goal is through CSS Sprites - combining multiple images into one image and then positioning them using CSS.
The purpose of CSS Sprites is to speed up page loading by consolidating images and reducing the number of requests to the server.

Implementation method :
First, integrate the small pictures into a large picture. For simplicity, you can put multiple pictures in the same column, so that the x-axis can be defined as 0.
Then position the background according to the position of the specific icon on the big picture. background-position:-8px -95px;
example:
When we use the auther.gif in the above picture as the background, if the code is as follows:

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

Recommend

CSS injection knowledge summary

Modern browsers no longer allow JavaScript to be ...

Detailed Example of CSS3 box-shadow Property

CSS3 -- Adding shadows (using box shadows) CSS3 -...

HTML Tutorial: Collection of commonly used HTML tags (4)

Related articles: Beginners learn some HTML tags ...

960 Grid System Basic Principles and Usage

Of course, there are many people who hold the oppo...

MySql index detailed introduction and correct use method

MySql index detailed introduction and correct use...

What codes should I master when learning web page design?

This article introduces in detail some of the tech...

Getting Started with MySQL - Concepts

1. What is it? MySQL is the most popular relation...

Six important selectors in CSS (remember them in three seconds)

From: https://blog.csdn.net/qq_44761243/article/d...

Refs and Ref Details in Vue3

The editor also shares with you the corresponding...

Problems installing TensorRT in docker container

Uninstall the installed version on Ubuntu: sudo a...

Specific method to add foreign key constraints in mysql

The operating environment of this tutorial: Windo...

How to reset the root password in Linux mysql-5.6

1. Check whether the MySQL service is started. If...

Four ways to combine CSS and HTML

(1) Each HTML tag has an attribute style, which c...