swiper自定义分页器使用方法详解


Posted in Javascript onSeptember 14, 2020

本文实例为大家分享了swiper自定义分页器使用的具体代码,供大家参考,具体内容如下

解决问题:不想使用swiper的自带的圆钮式的分页器,想使用自定义的分页器。

解决方案:利用swiper提供的paginationCustomRender()方法(自定义特殊类型分页器,当分页器类型设置为自定义时可用。)
下面的代码可以直接赋值粘贴到html文件里面然后作为项目在浏览器打开,但是图片需要你引用自己的本地图片并设置好路径,否则你是看不到轮播图片的。代码如下(参考注释很重要):

<!DOCTYPE html> 
<html> 
 
 <head> 
 <meta charset="UTF-8"> 
 <title>swiper自定义分页器用法</title> 
 <link href="swiper-3.4.2.min.css" rel="stylesheet" /> 
 <style> 
 * { 
 padding: 0; 
 margin: 0; 
 } 
 
 .swiper-container { 
 position: relative; 
 width: 100%; 
 height: 100%; 
 } 
 
 .swiper-slide { 
 text-align: center; 
 font-size: 18px; 
 background: #fff; 
 display: -webkit-box; 
 display: -ms-flexbox; 
 display: -webkit-flex; 
 display: flex; 
 -webkit-box-pack: center; 
 -ms-flex-pack: center; 
 -webkit-justify-content: center; 
 justify-content: center; 
 -webkit-box-align: center; 
 -ms-flex-align: center; 
 -webkit-align-items: center; 
 align-items: center; 
 } 
 
 .swiper-slide img { 
 display: block; 
 width: 100%; 
 max-width: 100%; 
 } 
 /*包裹自定义分页器的div的位置等CSS样式*/ 
 .swiper-pagination-custom { 
 bottom: 10px; 
 left: 0; 
 width: 100%; 
 } 
 /*自定义分页器的样式,这个你自己想要什么样子自己写*/ 
 .swiper-pagination-customs { 
 width: 30px; 
 height: 4px; 
 display: inline-block; 
 background: #000; 
 opacity: .3; 
 margin: 0 5px; 
 } 
 /*自定义分页器激活时的样式表现*/ 
 .swiper-pagination-customs-active { 
 opacity: 1; 
 background-color: #F78E00; 
 } 
 </style> 
 </head> 
 
 <body> 
 <div class="swiper-container"> 
 <div class="swiper-wrapper"> 
 <div class="swiper-slide"> 
  <img src="banner1_.jpg" alt="轮播图1" /> 
 </div> 
 <div class="swiper-slide"> 
  <img src="banner2_.jpg" alt="轮播图2" /> 
 </div> 
 </div> 
 <div class="swiper-pagination"></div> 
 </div> 
 </body> 
 <script src="jquery.min.js"></script> 
 <script type="text/javascript" src="swiper.min.js"></script> 
 <script> 
 var mySwiper = new Swiper('.swiper-container', { 
 direction: 'horizontal', 
 loop: true, 
 autoplay: 3000,//自动轮播 
 speed: 600, 
 // 如果需要分页器 
 pagination: '.swiper-pagination', 
 paginationType: 'custom',//这里分页器类型必须设置为custom,即采用用户自定义配置 
 //下面方法可以生成我们自定义的分页器到页面上 
 paginationCustomRender: function(swiper, current, total) { 
 var customPaginationHtml = ""; 
 for(var i = 0; i < total; i++) { 
  //判断哪个分页器此刻应该被激活 
  if(i == (current - 1)) { 
  customPaginationHtml += '<span class="swiper-pagination-customs swiper-pagination-customs-active"></span>'; 
  } else { 
  customPaginationHtml += '<span class="swiper-pagination-customs"></span>'; 
  } 
 } 
 return customPaginationHtml; 
 } 
 }); 
 </script> 
 
</html>

代码效果图如下(上传图片大小有限制,所以我滑的有点快):

swiper自定义分页器使用方法详解

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
window.dialogArguments 使用说明
Apr 11 Javascript
javascript中万恶的function实例分析
May 25 Javascript
jQuery实现自定义checkbox和radio样式
Jul 13 Javascript
详解Javascript模板引擎mustache.js
Jan 20 Javascript
jQuery Validate插件自定义验证规则的方法
Dec 27 Javascript
Vue 2.0的数据依赖实现原理代码简析
Jul 10 Javascript
vue resource post请求时遇到的坑
Oct 19 Javascript
浅谈vue中使用图片懒加载vue-lazyload插件详细指南
Oct 23 Javascript
解决使用vue.js路由后失效的问题
Mar 17 Javascript
基于vue.js实现分页查询功能
Dec 29 Javascript
vue-i18n结合Element-ui的配置方法
May 20 Javascript
使用vue实现多规格选择实例(SKU)
Aug 23 Javascript
JavaScript实现数值自动增加动画
Dec 28 #Javascript
详解如何优雅地在React项目中使用Redux
Dec 28 #Javascript
ionic3实战教程之随机布局瀑布流的实现方法
Dec 28 #Javascript
JS实现带动画的回到顶部效果
Dec 28 #Javascript
JavaScript实现元素滚动条到达一定位置循环追加内容
Dec 28 #Javascript
在nginx上部署vue项目(history模式)的方法
Dec 28 #Javascript
js实现把时间戳转换为yyyy-MM-dd hh:mm 格式(es6语法)
Dec 28 #Javascript
You might like
php生成随机密码的三种方法小结
2010/09/04 PHP
PHP网站备份程序代码分享
2011/06/10 PHP
如何在smarty中增加类似foreach的功能自动加载数据
2013/06/26 PHP
Yii使用smsto短信接口的函数demo示例
2016/07/13 PHP
利用PHP计算有多少小于当前数字的数字方法示例
2020/08/26 PHP
js漂浮广告实现代码
2015/08/15 Javascript
jQuery验证插件validate使用方法详解
2020/09/13 Javascript
JS基于递归实现倒计时效果的方法
2016/11/26 Javascript
jQuery的中 is(':visible') 解析及用法(必看)
2017/02/12 Javascript
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#‘的解决方法
2017/06/17 Javascript
使用bootstraptable插件实现表格记录的查询、分页、排序操作
2017/08/06 Javascript
JavaScript正则表达式函数总结(常用)
2018/02/22 Javascript
关于vue-cli 3配置打包优化要点(推荐)
2019/04/22 Javascript
vue 在服务器端直接修改请求的接口地址
2020/12/19 Vue.js
[07:54]DOTA2 MV《我的动力鞋》 ImbaTV 出品
2014/11/21 DOTA
Python中的hypot()方法使用简介
2015/05/18 Python
Django重装mysql后启动报错:No module named ‘MySQLdb’的解决方法
2018/04/22 Python
python使用正则表达式来获取文件名的前缀方法
2018/10/21 Python
python读取txt文件中特定位置字符的方法
2018/12/24 Python
在pycharm中使用git版本管理以及同步github的方法
2019/01/16 Python
使用django和vue进行数据交互的方法步骤
2019/11/11 Python
python 爬虫请求模块requests详解
2020/12/04 Python
anaconda升级sklearn版本的实现方法
2021/02/22 Python
css3 伪类选择器快速复习小结
2019/09/10 HTML / CSS
加拿大最大的相机店:Henry’s
2017/05/17 全球购物
创立科技Java面试题
2015/11/29 面试题
妇科医生自荐信
2013/11/05 职场文书
化工专业应届生求职信
2013/11/08 职场文书
会计专业毕业自荐书范文
2014/02/08 职场文书
小学新学期寄语
2014/04/02 职场文书
《晚上的太阳》教学反思
2014/04/23 职场文书
员工廉洁自律承诺书
2014/05/26 职场文书
科级干部群众路线教育实践活动对照检查材料思想汇报
2014/09/20 职场文书
投资申请报告
2015/05/19 职场文书
导游词之包公祠
2019/11/25 职场文书
浅谈mysql返回Boolean类型的几种情况
2021/06/04 MySQL