angularjs实现首页轮播图效果

<!DOCTYPE html> <html ng-app="myApp" lang="en"> <head> <meta charset="UTF-8"> <title>AngularJS carousel</title> <link href="https://libs.baidu.com/bootstrap/3.3.0/css/bootstrap.min.css"> </head> <body> <div ng-controller="CarouselDemoCtrl"> <div> <carousel interval="myInterval" no-wrap="noWrapSlides"> <slide ng-repeat="slide in slides" active="slide.active"> <img ng-src="{{slide.image}}"> <div> <h4>Slide {{$index}}</h4> <p>{{slide.text}}</p> </div> </slide> </carousel> </div> </div> <script src="https://www.jb51.net/angular.js/1.3.13/angular.min.js"></script> <script src="https://www.jb51.net/angular.js/1.4.0-beta.4/angular-animate.min.js"></script> <script src="https://www.jb51.net/angular-ui-bootstrap/0.13.3/ui-bootstrap.min.js"></script> <script src="https://www.jb51.net/angular-ui-bootstrap/0.13.3/ui-bootstrap-tpls.min.js"></script> <script> angular.module('myApp', ['ui.bootstrap', 'ngAnimate']).controller('CarouselDemoCtrl', function ($scope) {        //轮播图轮播间隔时间 $scope.myInterval = 2000; $scope.noWrapSlides = false; var slides = $scope.slides = []; $scope.addSlide = function () { var newWidth = 600 + slides.length + 1; slides.push({ image: '', text: 'Chocola & Vanilla', }); slides.push({ image: '', text: 'Chocola & Vanilla', }); slides.push({ image: '', text: 'Chocola & Vanilla', }); slides.push({ image: '', text: 'Chocola & Vanilla', }); }; $scope.addSlide(); }); </script> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wypspf.html