CSS background image flickering bug in IE6 (background image cache problem in IE6) IE6 will re-send the request for each background image (not local) every time it is used. Even when there is a hover effect, the same background image is only in a different position, and IE6 will re-send the request. This frustrating thing needs to be solved: Copy code The code is as follows:html {filter:expression(document.execCommand("BackgroundImageCache", false, true));} Of course, the disadvantage is that it may slow down the loading speed of the entire page. Most people will choose the js method to implement: Copy code The code is as follows:<script type='text/javascript'> document.execCommand("BackgroundImageCache", false, true); </script> Disadvantages: Errors will occur if executed in browsers such as Firefox. So you need to determine whether it is an IE browser, using the judgment method provided by jQuery as follows: Copy code The code is as follows:<script type='text/javascript'> if ($.browser.msie) { document.execCommand("BackgroundImageCache", false, true); } </script> An even simpler approach is to use IE's conditional comments: Copy code The code is as follows:<!--[if lt IE 7]> <script>document.execCommand("BackgroundImageCache",false,true);</script> <![endif]--> |
<<: Use CSS blend modes and SVG to dynamically change the color of your product images
>>: How to use IDEA to create a web project and publish it to tomcat
Why do I want to organize the content in this area...
Table of contents Preface 1. Rendering 2. Code 3....
Table of contents introduce Implementation steps ...
Due to the needs of the project, I plan to study ...
Using iframes can easily call pages from other we...
Four practical vue custom instructions 1. v-drag ...
1. Convert the json object into a json string, an...
1. Problem introduction Assume a scenario where a...
nginx installation Ensure that the virtual machin...
Uninstall MariaDB CentOS7 installs MariaDB instea...
introduction: Slider drag verification is now use...
I once promised that I would keep writing until pe...
question Running gdb in docker, hitting a breakpo...
Table of contents Install Docker on CentOS 8 1. U...
Mac node delete and reinstall delete node -v sudo...