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
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