CSS ͼÏñ͸Ã÷¶È
ͨ¹ý CSS ´´½¨Í¸Ã÷ͼÏñÊǺÜÈÝÒ׵ġ£
×¢ÊÍ£ºCSS opacity ÊôÐÔÊÇ W3C CSS ÍÆ¼ö±ê×¼µÄÒ»²¿·Ö¡£
Ç××ÔÊÔÒ»ÊÔ - ʵÀý
- ´´½¨Í¸Ã÷ͼÏñ - Hover Ч¹û
- ÔÚ±¾ÀýÖУ¬µ±Óû§½«Êó±êÖ¸ÕëÒÆ¶¯µ½Í¼Æ¬ÉÏʱ£¬»á¸Ä±äͼƬµÄ͸Ã÷¶È¡£
- ´´½¨Îı¾ÔÚ±³¾°Í¼ÏñÉϵÄ͸Ã÷¿ò
- ±¾Àý´´½¨ÁËÒ»¸ö°üΧÎı¾µÄ°ë͸Ã÷¿ò¡£
ʵÀý 1 - ´´½¨Í¸Ã÷ͼÏñ
¶¨Òå͸Ã÷Ч¹ûµÄ CSS3 ÊôÐÔÊÇ opacity¡£
Ê×ÏÈ£¬ÎÒÃǽ«Õ¹Ê¾ÈçºÎͨ¹ý CSS À´´´½¨Í¸Ã÷ͼÏñ¡£
³£¹æÍ¼Ïñ£º

´øÓÐ͸Ã÷¶ÈµÄÏàͬͼÏñ£º

Çë¿´ÏÂÃæµÄ CSS£º
img
{
opacity:0.4;
filter:alpha(opacity=40); /* Õë¶Ô IE8 ÒÔ¼°¸üÔçµÄ°æ±¾ */
}
IE9, Firefox, Chrome, Opera ºÍ Safari ʹÓÃÊôÐÔ opacity À´É趨͸Ã÷¶È¡£opacity ÊôÐÔÄܹ»ÉèÖõÄÖµ´Ó 0.0 µ½ 1.0¡£ÖµÔ½Ð¡£¬Ô½Í¸Ã÷¡£
IE8 ÒÔ¼°¸üÔçµÄ°æ±¾Ê¹ÓÃÂ˾µ filter:alpha(opacity=x)¡£x Äܹ»È¡µÄÖµ´Ó 0 µ½ 100¡£ÖµÔ½Ð¡£¬Ô½Í¸Ã÷¡£
ʵÀý 2 - ͼÏñ͸Ã÷¶È - Hover Ч¹û
Çë°ÑÊó±êÖ¸ÕëÒÆ¶¯µ½Í¼ÏñÉÏ£º

CSS ÊÇÕâÑùµÄ£º
img { opacity:0.4; filter:alpha(opacity=40); /* Õë¶Ô IE8 ÒÔ¼°¸üÔçµÄ°æ±¾ */ } img:hover { opacity:1.0; filter:alpha(opacity=100); /* Õë¶Ô IE8 ÒÔ¼°¸üÔçµÄ°æ±¾ */ }
µÚÒ»¸ö CSS ´úÂë¿éÀàËÆÊµÀý 1 ÖеĴúÂë¡£´ËÍ⣬ÎÒÃÇÒѾÉèÖÃÁ˵±Êó±êÖ¸ÕëλÓÚͼÏñÉÏʱµÄÑùʽ¡£ÔÚÕâ¸öÀý×ÓÖУ¬µ±Ö¸ÕëÒÆ¶¯µ½Í¼ÏñÉÏʱ£¬ÎÒÃÇÏ£ÍûͼÏñÊDz»Í¸Ã÷µÄ¡£
¶ÔÓ¦µÄ CSS ÊÇ£ºopacity=1¡£
IE8 ÒÔ¼°¸üÔçµÄä¯ÀÀÆ÷£ºfilter:alpha(opacity=100)¡£
µ±Êó±êÖ¸ÕëÒÆ³öͼÏñºó£¬Í¼Ïñ»áÔÙ´Î͸Ã÷¡£
ʵÀý 3 - ͸Ã÷¿òÖеÄÎı¾
This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box.
Ô´´úÂëÊÇÕâÑùµÄ£º
<!DOCTYPE html> <html> <head> <style> div.background { width: 400px; height: 266px; background: url('/i/tulip_peach_blossom_w.jpg') no-repeat; border: 1px solid black; } div.transbox { width: 338px; height: 204px; margin:30px; background-color: #ffffff; border: 1px solid black; /* for IE */ filter:alpha(opacity=60); /* CSS3 standard */ opacity:0.6; } div.transbox p { margin: 30px 40px; } </style> </head> <body> <div class="background"> <div class="transbox"> <p> This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. This is some text that is placed in the transparent box. </p> </div> </div> </body> </html>
Ê×ÏÈ£¬ÎÒÃÇ´´½¨Ò»¸ö div ÔªËØ (class="background")£¬ËüÓй̶¨µÄ¸ß¶ÈºÍ¿í¶È¡¢±³¾°Í¼Ïñ£¬ÒÔ¼°±ß¿ò¡£È»ºóÎÒÃÇÔÚµÚÒ»¸ö div ÄÚ´´½¨ÉÔСµÄ div (class="transbox")¡£"transbox" div Óй̶¨µÄ¿í¶È¡¢±³¾°É«ºÍ±ß¿ò - ²¢ÇÒËüÊÇ͸Ã÷µÄ¡£ÔÚ͸Ã÷ div ÄÚ²¿£¬ÎÒÃÇÔÚ p ÔªËØÖмÓÈëÁËһЩÎı¾¡£
Ïà¹ØÒ³Ãæ
CSS ²Î¿¼Êֲ᣺CSS3 opacity ÊôÐÔ