I have a problem where the bootstrap carousel changes the image, adds the next ( transform: translate3d(100%, 0, 0);) class for the item and adds motion blur during the effect for the text of my navigation menu.
transform: translate3d(100%, 0, 0);
Here you can see an example: http://bek.2d.uz/ Please view the navigation bar for a maximum of 10 seconds.
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 the rendering to the GPU.
Source: https://habr.com/ru/post/1667124/More articles:How to add wiredesignz modular extension to codeigniter 3.0 - phpuse protection to check zero level without implicit deployment - swiftUnexpected output in inheritance - javaCkEditor Cannot set property 'dir' from undefined - javascriptHow to check if two loops match using OpenCV matchShapes? - javaNSNotificationCenter Swift 3.0 on keyboard show and hide - iosDoes it make sense to create an array property? - arraysPillow - Resizing GIFs - pythonВалидация Laravel уникальная мягкая удаленная - phpHow to get a photo from the Cordova camera preview plugin? - cordovaAll Articles