Images wiggles when hover (scale effect)

前端 未结 3 483
天涯浪人
天涯浪人 2020-12-18 07:42

My image links are wiggling a bit when I\'m hover the images. I don\'t know how to fix this :/ I\'m using the scale effect in css to make the pictures a bit bigger when hove

3条回答
  •  情话喂你
    2020-12-18 08:20

    If you're using a webkit browser the following may help. Adding this to the container of the element you are animating should make the animation smoother. As far as I understand it, it forces the browser into using hardware acceleration.

    .socialmedia {
         -webkit-backface-visibility: hidden;
    }
    

提交回复
热议问题