swiper

Open full view…

about .swiper-container-android css

boynet
Thu, 16 Apr 2015 10:18:20 GMT

whats the reason for this lines? I understand that it for taking it to the gpu, but why only on android? if I remove it is there any consequence for android 4.0+? thanks ```` .swiper-container-android .swiper-slide, .swiper-wrapper { -webkit-transform: translate3d(0px, 0, 0); -moz-transform: translate3d(0px, 0, 0); -o-transform: translate(0px, 0px); -ms-transform: translate3d(0px, 0, 0); transform: translate3d(0px, 0, 0); } ````

Vladimir Kharlampidi
Thu, 16 Apr 2015 14:56:50 GMT

That is Android only hack, because without it (for some magic reason), links in slide 2 and more became unaccessible. iOS doesn't need it

boynet
Thu, 16 Apr 2015 15:36:36 GMT

thanks