I have successfully created a basic image slider that is working well.
Currently, I am exploring how to incorporate the Angular $interval
service into my function to enable automatic transitioning of the slides.
Is there anyone who knows how to achieve this? I believe it should only require one or two lines of code. You can view my progress on Plunkr
// JOBS FLICKR FUNCTIONS
$scope.jobNotification = 0;
var timer = $interval();
$scope.isActive = function (index) {
return $scope.jobNotification === index;
};
$scope.showJobNotification = function (index) {
$scope.jobNotification = index;
};
While I have experimented with different bootstrap versions, I am now focused on manually building something to enhance my understanding.