• angularjs实现首页轮播图


    <!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版本不同可能出现问题

  • 相关阅读:
    P1856 [USACO5.5]矩形周长Picture 题解
    题解 SP703 【SERVICE
    题解 P2893 【[USACO08FEB]Making the Grade G】
    P4551 最长异或路径 题解
    P3834 【模板】可持久化线段树 2(主席树)题解
    用正则表达式验证用户名输入的正确性
    软件测试杂谈
    next_permutation
    刊物论文级别
    android 之常见事件响应的实现方式对比
  • 原文地址:https://www.cnblogs.com/free-ys/p/6704454.html
Copyright © 2020-2023  润新知