详解如何将angular-ui的图片轮播组件封装成一个指令
程序员文章站
2022-06-24 17:36:42
在项目开发中我们经常会遇到图片轮播的功能点:
如果我们开发人员自己原生手写,将会花费很多的时间,最终得不偿失。
接下来就详细说说如何使用angular-ui发热图片轮播...
在项目开发中我们经常会遇到图片轮播的功能点:
如果我们开发人员自己原生手写,将会花费很多的时间,最终得不偿失。
接下来就详细说说如何使用angular-ui发热图片轮播模块,并且将它写成一个指令(便于复用)
一如既往的我们项目中使用时requirejs进行js代码的编译
准备工作:
1):引入angularjs , ui-bootstrap-tpls-1.3.2(我使用的是1.3.2版本的)
第一步:自己写一个指令(命名为picchange)
说明:指令控制器中的代码都是angualr-ui官网上拷贝的(因为此文章的重点是如何将其封装成指令,其他的不做重点)
指令的js代码
define(['app'],function(myapp){ myapp.directive('picchange',[function(){ return { scope:{ picurl:'=', }, controller:['$scope',function($scope){ $scope.myinterval = 5000;//轮播的时间间隔 $scope.nowrapslides = false;//是否循环轮播 $scope.active = 0;//起始所显示的图片(0:下标为0的图片) var slides = $scope.slides = [];//用于存放图片地址 var currindex = 0; $scope.addslide = function() { var newwidth = slides.length + 1; slides.push({ image: $scope.picurl[newwidth].imgurl,//图片的url text: $scope.picurl[newwidth].worddes,//图片的描述文字 id: currindex++ }); }; //................随机........... $scope.randomize = function() { var indexes = generateindexesarray(); assignnewindexestoslides(indexes); }; for (var i = 0;i<$scope.picurl.length;i++) { $scope.addslide(); } // randomize logic below function assignnewindexestoslides(indexes) { for (var i = 0, l = slides.length; i < l; i++) { slides[i].id = indexes.pop(); } } function generateindexesarray() { var indexes = []; for (var i = 0; i < currindex; ++i) { indexes[i] = i; } return shuffle(indexes); } // http://*.com/questions/962802#962890 function shuffle(array) { var tmp, current, top = array.length; if (top) { while (--top) { current = math.floor(math.random() * (top + 1)); tmp = array[current]; array[current] = array[top]; array[top] = tmp; } } return array; } }], templateurl:'js/directives/picchange/picchange.html',//轮播的页面 link:function(s,e,attrs){ }, } }]); });
好了上面的代码都是拷贝来的,不做解释
轮播模块的html:(picchange.html),指令的html(这个没啥理解的)
指令的html
<div> <div style="height: 305px;"> <uib-carousel no-wrap="nowrapslides" interval="myinterval" active="active"> <uib-slide index="slide.id" ng-repeat="slide in slides track by slide.id"> <img style="margin: auto;" ng-src="{{slide.image}}"> <div class="carousel-caption"> <h4>slide {{slide.id}}</h4> <p>{{slide.text}}</p> </div> </uib-slide> </uib-carousel> </div> <div class="row"> <div class="col-md-6"> <button class="btn btn-info" type="button" ng-click="addslide()">add slide</button> <button class="btn btn-info" type="button" ng-click="randomize()">randomize slides</button> <div class="checkbox"> <label> <input type="checkbox" ng-model="nowrapslides"> disable slide looping </label> </div> </div> <div class="col-md-6"> interval, in milliseconds: <input class="form-control" type="number" ng-model="myinterval"> <br>enter a negative number or 0 to stop the interval. </div> </div> </div>
到此为止关于指令的封装已经完成,接下来是如何使用的问题:
(1)有一个页面要用到此指令:(命名为test.html)
<p>图片的轮播</p> <div picurl="img" picchange=""></div><!--img是用来传递参数的-->
test.html对应的控制器:(idea_test_ctrl)
define(['app','directives/picchange/picchange'],function(myapp){ myapp.controller('idea_test_ctrl',['$scope',function($scope){ console.log("this is idea_test_ctrl 的控制器"); $scope.img=[//img是一个对象,其中包含了图片的地址,以及文字描述 {imgurl:'images/test/1.jpg',worddes:'this is good pic'}, {imgurl:'images/test/2.jpg',worddes:'这是一张很好看的图片'}, {imgurl:'images/test/3.jpg',worddes:'it is good pic'} ]; }]); });
这里给出我的路由配置,便于大家理解:
.state('home.ideas.test', {//(测试) url: '/test', views: { "part": { templateurl: 'tpls/ideas/test.html', controller:"idea_test_ctrl" } } })
到此已经讲解完;
ui-bootstrap的地址:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: 你看我合适吗