light-swiper icon indicating copy to clipboard operation
light-swiper copied to clipboard

a lightweight Swiper native js plugin (3kb gziped)

Results 1 light-swiper issues
Sort by recently updated
recently updated
newest added

例:在不限制的图片容器内,使用startSlide为非0,第一个slide会出现,第一个slide的translateLeft的计算结果为0, 原计算:index > pos ? -width *pos : index < pos ? width * pos : 0 ![image](https://user-images.githubusercontent.com/23164531/123223598-9a94e700-d503-11eb-8663-3f5228e59448.png) ![image](https://user-images.githubusercontent.com/23164531/123223682-ae404d80-d503-11eb-9adb-747a62396369.png) 需要修改为:index > pos ? -width * index : index < pos...