ホームページ > 記事 > ウェブフロントエンド > Angularjs でカルーセル コマンド スワイパーを使用する方法のコード例を共有する
この記事は、Angularjsでのカルーセルコマンドスワイパーの使用に関する関連知識を主に紹介しています。非常に優れており、必要な友人は参考にすることができます
angualrjsのモバイル開発でカルーセルに遭遇しました。画像
インストール swiper npm install --save swiper
或者 bower install --save swiper
ファイルパスの紹介
<link rel="stylesheet" href="../bower_components/swiper/dist/css/swiper.min.css" rel="external nofollow" /> <script src="../bower_components/swiper/dist/js/swiper.jquery.min.js"></script>
命令内の書き方
(function() { 'use strict'; angular .module('campus.core') //对应项目的module 请换成自己的模块名称 .directive('swipers',swipers); swipers.$inject = ['$timeout']; function swipers($timeout) { return { restrict: "EA", scope: { data:"=" }, template: '<p class="swiper-container silder">'+ '<ul class="swiper-wrapper">'+ '<li class="swiper-slide" ng-repeat="item in data">'+ '<a class="img40" href="{{item.contentUrl}}" rel="external nofollow" ><img ng-src="{{item.imgId}}" alt="" /></a>'+ '</li>'+ '</ul>'+ '<p class="swiper-pagination"></p>'+ '</p>', link: function(scope, element, attrs) { $timeout(function(){ var swiper = new Swiper('.swiper-container', { //轮播图绑定样式名 pagination: '.swiper-pagination', paginationClickable: true, autoplay: 2500, }); },100); } }; } })();
データバインディングインターフェース返されたカルーセルリストvm.home.headImgsは返されたカルーセルチャートに対応します データリスト
りー以上がAngularjs でカルーセル コマンド スワイパーを使用する方法のコード例を共有するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。