Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add motion blur to navbar text when Bootstrap carousel sliding

I have the problem when the bootstrap carousel changes the image, it's adds the class next ( transform: translate3d(100%, 0, 0); ) for item and Add motion blur during the effect to text my navbar menu.. enter image description here

You can see example here: http://bek.2d.uz/ Please look the navbar maximum 10 sec.

like image 281
TriSTaR Avatar asked Sep 11 '25 12:09

TriSTaR


1 Answers

You can add this fix:

.main_menu .navbar .navbar-nav {
  transform: translateZ(0);
}

translateZ(0) hack forces the browser to create a new layer and send rendering to the GPU.

like image 82
max Avatar answered Sep 14 '25 02:09

max