/* * author??zx * time??2015.8.7 **/ function initSwipers(options) { var id = options.id; new Swiper('#' + id, { spaceBetween: options.spaceBetween ? options.spaceBetween : 5, pagination: '#' + id + ' .swiper-pagination', paginationClickable: true, //paginationBulletRender: function (index, className) { // return '' + (index + 1) + ''; //}, autoplay: options.autoplay ? options.autoplay : true, loop: true }); }