码迷,mamicode.com
首页 > Web开发 > 详细

angularjs实现首页轮播图

时间:2017-04-13 16:53:35      阅读:671      评论:0      收藏:0      [点我收藏+]

标签:des   type   blog   lib   repeat   3.3   use   lin   slides   

<!DOCTYPE html>
<html ng-app="myApp" lang="en">
<head>
    <meta charset="UTF-8">
    <title>AngularJS carousel</title>
    <link href="http://libs.baidu.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <div ng-controller="CarouselDemoCtrl">
        <div style="height: 305px">
            <carousel interval="myInterval" no-wrap="noWrapSlides">
                <slide ng-repeat="slide in slides" active="slide.active">
                    <img ng-src="{{slide.image}}" style="margin:auto;">
                    <div class="carousel-caption">
                        <h4>Slide {{$index}}</h4>
                        <p>{{slide.text}}</p>
                    </div>
                </slide>
            </carousel>
        </div>
    </div>
    <script src="../angular.js/1.3.13/angular.min.js"></script>
    <script src="../angular.js/1.4.0-beta.4/angular-animate.min.js"></script>
    <script src="../angular-ui-bootstrap/0.13.3/ui-bootstrap.min.js"></script>
    <script src="../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>

注意:ui-bootstrap版本不同可能出现问题

angularjs实现首页轮播图

标签:des   type   blog   lib   repeat   3.3   use   lin   slides   

原文地址:http://www.cnblogs.com/free-ys/p/6704454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!