亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

html - css Why do I add translate3d(0,0,0) when the element disappears under hover?
女神的閨蜜愛上我
女神的閨蜜愛上我 2017-06-27 09:19:01
0
2
1020
figure.team-blue:hover img{
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
女神的閨蜜愛上我
女神的閨蜜愛上我

reply all(2)
迷茫

Adding translate3d(0,0,0) should be to enable hardware acceleration (hack technique), and the disappearing effective code should be the sentence opacity: 0;.

阿神

Using -webkit-transform: translate3d(0,0,0); will kick the GPU into action for the CSS transitions, making them smoother (higher FPS). Probably means using hardware acceleration

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template