[CSS] mouse over the picture to change the size and location transparency

[CSS] mouse over the picture to change the size and location transparency


Pictures transparency:
a:hover img
{
    border: solid 5px #ff0000;
    -mox-opacity:1.0;        /*-mox是for firefox*/
    filter:alpha(opacity=100);
    opacity:1.0;
}
a img
{
    border: solid 5px #ff0000;
    -mox-opacity:0.8;
    filter:alpha(opacity=80);
    opacity:0.8;
}
 
Image size and position changes:
 
When the call:
 
 
 
Content Source: http: //www.ironman.tw/article.asp id = 87?
 
 
 

Original: Large column  [CSS] mouse over the picture to change the size and location transparency


Guess you like

Origin www.cnblogs.com/chinatrump/p/11458533.html