1.IE8 does not support carousel components,
Workaround: Change jquery to Jquery1 version for specific reasons ~~~~~
2.IE8 does not support Background-color:rgba ();
Workaround: Write the code like this:
. Carousel-indicators Li{width:24px;height:24px;margin-right:20px;border-radius:24px;background:rgba (255,255,255 ,. 3); Filter:progid:DXImageTransform.Microsoft.gradient (startcolorstr= #4cffffff, endcolorstr= #4cffffff);}
Background:rgba (255,255,255,.3);
Filter:progid:DXImageTransform.Microsoft.gradient (startcolorstr= #4cffffff, endcolorstr= #4cffffff);
The meaning of Rgba, R for Red,g on behalf of GREEN,B on behalf of blue, red and green Blue is the three primary colors. All colors can be made up of these three colors. A represents transparency. For example, Rgba (255,255,255,0.1) is white with a transparency of 0.1. In modern browsers, RGBA is supported. However, in IE8 and other antique-level browsers are not supported by RGBA, IE8 can only reluctantly support the RGB () function (that is, remove the transparency, can only represent color).
It is noted that the color "#19ffffff" is made up of two parts.
The first part is the number after the # . is the Iefilter value of the RGBA transparency 0.1. From 0.1 to 0.9 each number corresponds to a iefilter value. The corresponding relationship is as follows:
the second part is six bits after 19 . This is the color value of the six binary. Is the same as the value in the RGB function. For example, RGB (255,255,255) corresponds to #ffffff, all white.
Here, the use of RGBA can be compatible with IE8.
Bootstrap problems encountered in the use of (ii)