我希望放大只会影响 div 内的 img 并且不会调整所有 div 比例
这是小提琴链接:http: //jsfiddle.net/4tHWg/1/
示例代码:
.box {
float: left;
position: relative;
width: 14.285714286%;
}
.boxInner img {
width: 100%;
display: block;
-webkit-filter: grayscale(00%);
-moz-filter: grayscale(00%);
-o-filter: grayscale(00%);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.boxInner img:hover {
width: 200%;
}