Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bx Slider makes other elements on the page moving (on Chrome)

I found bug on 2 websites: as said in the title, when a slide is running, some elements further in the page are moving at the same time. Check this page:

http://www.cosmosupplylab.com/

Scrolling down on the page to the Team part, some portraits are moving at the same time the slider is fired. It happens too on the Expertise part, and other places on the page (some pictures, just one word in a paragraph, some div's ...)

It's a really strange behaviour, if you have an idea about what could be the reason, thanks a lot!

like image 700
JaK L Avatar asked May 10 '13 11:05

JaK L


1 Answers

I had the same behaviour in Google Chrome and fixed it by adding the following to my CSS.

.bx-viewport {
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}
like image 97
derhansen Avatar answered Sep 27 '22 21:09

derhansen