5 つの画像を含むヘッダーがあります。ホバーしたときに画像が10px上に遷移するようにしたいのですが、なぜか瞬時に上に移動するだけでスムーズに上がらないのです。Google Chrome を使用しています。
.navbar img {
position: relative;
top: 0px;
transition: transform .2s ease-in-out;
}
.navbar img:hover {
transform: translate3d(0px, -10px, 0px);
-webkit-transform: translate3d(0px, -10px, 0px);
}
サイトhttp://pannariz.comを参照できます。それはそれがどのように見えるかです