angular2-useful-swiper icon indicating copy to clipboard operation
angular2-useful-swiper copied to clipboard

Use iDangero.us' great slider, Swiper in Angular 2.

Results 54 angular2-useful-swiper issues
Sort by recently updated
recently updated
newest added

**component.html** ``` Slide 1 Slide 2 Slide 3 Slide 4 Slide 5 Slide 6 Slide 7 Slide 8 Slide 9 Slide 10 ``` **component.ts:** ``` config: SwiperOptions = { autoplay:...

`ng serve --prod` fails with: ```bash ERROR in ../node_modules/ngx-useful-swiper/lib/swiper/swiper.component.d.ts:7:9 - error TS1086: An accessor cannot be declared in an ambient context. 7 set initialize(value: boolean); ~~~~~~~~~~ ``` Running Angular 8.3.23

Hi, I can't get the library to work on IE11. I do not find any anomaly on all other browsers. This is my `polifylls.ts `: > import 'core-js/es6/symbol'; import 'core-js/es6/object';...

When using ngFor to add swiper-slide and loop is enabled, I noticed that it is no longer possible to go to the previous slide when you are at the first...

When running this module on Node.js (for server-side rendering) I get an error ``` Reference error: Swiper not defined ``` in [this line](https://github.com/JayChase/angular2-useful-Swiper/blob/57071cb8a8e82c6a9ab86aa1d46e6195de9c9a1f/src/swiper.component.ts#L40). As the comment says [right above](https://github.com/JayChase/angular2-useful-swiper/blob/57071cb8a8e82c6a9ab86aa1d46e6195de9c9a1f/src/swiper.component.ts#L36-L37), this...

Can you please explain how to implement touch swipe and simple swipe on same time??

I want slider with thumbs like given in below link, [http://idangero.us/swiper/demos/300-thumbs-gallery.html](http://idangero.us/swiper/demos/300-thumbs-gallery.html) How to do in angular 5?

I am not sure how to make the responsive of `angular2-useful-swiper`. for example, I wrote the config like below. ``` config: SwiperOptions = { pagination: '.swiper-pagination', paginationClickable: false, nextButton: '.swiper-button-next',...

If we want to hide the pagination and then show it when user hover over it , how can we implment this feature. When i use ngIf to hide and...