ズームインが 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%;
}