This article is welcome to be shared and aggregated. There is no need to reprint the full text. Please respect copyright. The circle is so small. If you need it urgently, you can contact us for authorization. 1. PNG images that cannot be further compressed For example, the PNG image shown below (shown at 1/2 size) is still 122K after being compressed using the top PNG tools. The original image address is here: https://image.zhangxinxu.com/image/blog/202005/card.png The PNG size is as follows: If the project has only one such picture, it is fine. However, if there are many PNGs of this size on the page at once, the performance impact on the first load will be very obvious. For example, the four card pictures in the figure below are 500K. Since the background of the card is also a complex graphic, the edges and corners must be transparent. Changing it to JPG format will definitely not work (the edges and corners will become a solid color). Is there no way to further optimize it? Yes, that is to significantly optimize the size of PNG images with the help of CSS mask. 2. Mask-image and PNG size optimization The method is feasible, demo is here. The specific steps are as follows. 1. Convert PNG to JPG First save the PNG image to JPG, 50% of the image quality is enough, as shown below: At this point, the image size can be reduced by more than 50%! 2. Make a solid color PNG based on the PNG outline The reason why PNG images are large in size is because the colors are too rich. If we turn them into solid colors, the size can be reduced by more than 100 times. At this time, the size of the pure black filled PNG image is less than 1K: 3. Use a mask to make the JPG corners white and transparent Assuming that the JPG card image uses the <img src="card.jpg"> Use the following CSS code: img { -webkit-mask-image: url(card-mask.png); mask-image: url(card-mask.png); } You can get the same effect as the original 122K PNG image, with transparent corners and smaller size. Because the four corners of card-mask.png are transparent, after card.jpg applies card-mask.png as a mask image, the corners also become transparent. 4. Cross-domain restrictions on mask images With the security upgrade of Chrome and other browsers, there are currently cross-domain access restrictions on mask images, and there will be error prompts similar to the following:
We can convert the solid color mask image into base64 format, for example:
Seeing is believing, you can click here: PNG image size optimization demo using CSS mask The final effect of the JPG format card is shown in the following figure (the four corners are transparent): 3. Comparison of optimized effects The size comparison of the four pictures before and after optimization is as follows: The original size of 4 pictures is 458K, and the optimized picture size is 197K+1K, which is a 56.8% reduction in size! Queer~ Summarize This is the end of this article about how to significantly optimize the size of PNG images with the help of CSS mask. For more relevant CSS mask content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Practical record of optimizing MySQL tables with tens of millions of data
There are some differences between filter and bac...
This article example shares the specific code of ...
The Docker publishing method provides many conven...
Table of contents Written in front Requirements A...
Code: <input type="text" class="...
First of all, for security reasons, JavaScript ca...
I struggled with a problem for a long time and re...
It is very painful to set up a virtual machine th...
Copy code The code is as follows: <html> &l...
Experimental environment • A minimally installed ...
The four property values of position are: 1.rel...
Because the company asked me to build a WebServic...
This article example shares the specific code for...
In the WeChat applet project, the development mod...
SQL is the main trunk. Why do I understand it thi...