博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angular2-swiper幻灯片模块使用方法
阅读量:5968 次
发布时间:2019-06-19

本文共 1059 字,大约阅读时间需要 3 分钟。

1、安装模块

npm install swiper angular2-swiper --save-dev

2、配置angular-cli.json,样式文件

"styles": [     "../node_modules/swiper/dist/css/swiper.css"],

3、配置app.module.ts

import {KSSwiperModule} from "angular2-swiper";...imports: [    KSSwiperModule  ],...

4、模板文件

5、组件

import {Component, ViewChild, AfterViewInit} from "@angular/core";import {KSSwiperContainer, KSSwiperSlide} from 'angular2-swiper';@Component({  selector: "pri-home",  templateUrl: "../templates/home.component.html"})export class HomeComponent {  // 单机上一个下一个的时候调用封装子组件中的方法  @ViewChild(KSSwiperContainer)  swiperContainer:KSSwiperContainer;  // 图片数组  data:Array
; // 配置 swipeOptions:any; constructor() { this.swipeOptions = { // 每页显示几张图片 slidesPerView: 4, // 是否循环 loop: false, spaceBetween: 5 }; this.data = [ 1, 2, 3, 4, 5, 6 ] } // 下一个 moveNext() { this.swiperContainer.swiper.slideNext(); } // 上一个 movePrev() { this.swiperContainer.swiper.slidePrev(); }}

转载地址:http://ivqax.baihongyu.com/

你可能感兴趣的文章
Linux服务器配置和管理:虚拟机安装CentOS6.7
查看>>
掌握ajax
查看>>
ASA下邮件发送经常失败
查看>>
python3第八天(面向对象)
查看>>
pomelo的session
查看>>
我的友情链接
查看>>
ubuntu atp&dpkg
查看>>
主要 次要通道
查看>>
利用贝叶斯分类器进行文本挖掘---笔记
查看>>
我的友情链接
查看>>
将ping命令结果输出到文本
查看>>
小蚂蚁学习mysql性能优化(8)--数据库结构优化--范式化和反范式化,水平分表,垂直分表...
查看>>
py requests.post2
查看>>
批处理文件学习笔记
查看>>
[考试]20151008
查看>>
perf-perf stat用户层代码分析
查看>>
OSI七层与TCP/IP五层网络架构详解
查看>>
(转载)equals与==
查看>>
shell
查看>>
Centos防火墙添加IP白名单
查看>>