mihnsen / ui-carousel

A simple, lightweight module for carousel in your AngularJS app, Inspired from slick carousel.
http://mihnsen.github.io/ui-carousel/
MIT License
77 stars 67 forks source link

Transition speed with Fade = true #66

Open dakshinau opened 6 years ago

dakshinau commented 6 years ago

Hi,

thanks for the awesome plugin.

but i noticed that if i set transition style to fade the speed option will not work any more.

seems like you are manually setting the speed of it at ui-carousel.js - line 455

uniqueStyle.transition = 'opacity 250ms linear';

if you can change it to following it should work fine i guess

uniqueStyle.transition = 'opacity ' + _this.options.speed + 'ms linear';

thank you