swiper

Open full view…

Nested swiper with loop breaks when effect is set to "fade"

markdesign
Tue, 10 Mar 2015 22:53:22 GMT

You can see the bug here: http://codepen.io/markdesign/pen/OPBVaL Steps to reproduce, swipe right, then swipe up, up, up, up You can see the first image resetting early. Any work around for this?

Vladimir Kharlampidi
Wed, 11 Mar 2015 17:30:11 GMT

It is a complex case. You have all looped slides and each slide is a swiper. In loop mode it is cloning slides, and in your case swipers which are not probably initialized. So in your case, you need to follow this order: --- 1) Init parent swiper 2) Loop through child swipers and init them one by one 3) Bind two-way control of looped to non looped copy and contra versa

markdesign
Thu, 12 Mar 2015 16:09:01 GMT

Sorry, I don't understand step 3.