鼠标移到板块图片上,图片变大,移开鼠标恢复,
鼠标移到板块图片上,图片变大,移开鼠标恢复,帖内图片也有这个效果。
请问是怎么实现的????
http://www.mjqq.cn 这个论坛有此效果。你看看吧
将以下CSS样式加到模板公公样式文件common.css里面
如官方的模板:template/common/common.css
非官方模板加到:路径模板名/common/extend_common.css
.fl_icn:hover img {
transform: scale(1.2);
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
}
不是默认的模板可以通过审查元素找到对应的css选择器
页:
[1]