I am having issues with flex slider as it stops working if I use ng-repeat. Otherwise its working fine.
myApp.controller('frontCtrl', function ($scope) {
var results = {"id":4,"title":"sddddddd", "photos":[{"url":"http://placekitten.com/g/400/200","id":1},{"url":"http://placekitten.com/g/400/200","id":2}]};
$scope.images=results.photos
});
myApp.directive('flexslider', function () {
return {
link: function (scope, element, attrs) {
element.flexslider({
animation: "slide"
});
}
}
});
HTML
<div class="flexslider" flexslider>
<ul class="slides">
/* This wont work*/
<li ng-repeat="img in images">
<img src="{{img.url}}">
</li>
/* This work*/
<li>
<img src="http://placekitten.com/g/400/200">
</li>
<li>
<img src="http://placekitten.com/g/400/200">
</li>
<li>
<img src="http://placekitten.com/g/400/200">
</li>
</ul>
</div>
I have recreated this issue in a plunker http://plnkr.co/edit/P2AOwQY0fQSMSXUQbc9t?p=preview
For some reason the directive didn't work for me, so after a long trial and error period, I came up with the following:
function startSlideShow() {
jQuery('.slideshow').flexslider({
animation: "slide",
animationLoop: false,
itemWidth: 240,
controlNav: false
});
jQuery('#menu-section a.dropdown-toggle').click(function () {
jQuery('#menu-section .dropdown-menu').toggle();
})
}
and simply call this after you've loaded everything (my images come from a url that's loaded at runtime):
setTimeout( startSlideShow, 10)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With