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


i found bug on 2 websites: said in title, when slide running, elements further in page moving @ same time. check page:

http://www.cosmosupplylab.com/

scrolling down on page team part, portraits moving @ same time slider fired. happens on expertise part, , other places on page (some pictures, 1 word in paragraph, div's ...)

it's strange behaviour, if have idea reason, lot!

i had same behaviour in google chrome , fixed adding following css.

.bx-viewport {     -webkit-transform: translatez(0);     -moz-transform: translatez(0);     -ms-transform: translatez(0);     -o-transform: translatez(0);     transform: translatez(0); } 

Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -