Blur and Clear picture refers to the mouse changes模糊和清晰图片被鼠标指后的变化
2012年5月5日星期六 | 0 comments
Before前↑
After后↓

When the mouse point on the picture is clear
当鼠标指向图片时是清晰的
Login Blog ~ Informatioan Centre ~ Design ~ Edit HTML
登入博客 ~ 信息中心 ~ 设计 ~ 修改HTML
CTRL+F Find ]]></b:skin>
CTRL+F 找 ]]></b:skin>
然后在 ]]></b:skin> 上面 添加以下 一款代码
Then ]]></b:skin> above above a code
img{
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
img:hover{
-webkit-transition-duration: .5s;
filter: alpha(opacity=75);
moz-opacity:.75;
opacity:.75;
}
When the mouse point on the picture is blur
当鼠标指向照片时是模糊的
代码
img{
filter: alpha(opacity=75);
moz-opacity:.75;
opacity:.75;
}
img:hover{
-webkit-transition-duration: .5s;
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}