欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

swiper Scrollbar滚动条组件详解

程序员文章站 2023-11-03 14:29:34
本文实例为大家分享了swiper scrollbar滚动条组件的具体代码,供大家参考,具体内容如下 1、scrollbar 为swiper增加滚动条。类型:object...

本文实例为大家分享了swiper scrollbar滚动条组件的具体代码,供大家参考,具体内容如下

1、scrollbar

为swiper增加滚动条。类型:object。

2、el

scrollbar容器的css选择器或html元素。类型:string/html element,默认:.swiper-scrollbar。

3、hide

滚动条是否自动隐藏。类型:boolean,默认:true(会自动隐藏),false(不会自动隐藏)。

4、draggable

设置为true时允许拖动滚动条。类型:boolean,默认:false。

5、snaponrelease

设置为false,释放滚动条时slide不会自动切合。类型:boolean,默认:true。

6、dragsize

设置滚动条指示尺寸。默认:auto自动,或者设置为num(px)。类型:string/number。

<script>
var myswiper = new swiper('.swiper-container',{
 scrollbar: {
  el: '.swiper-scrollbar',
  hide: true,
  draggable: false,
  snaponrelease: true,
  dragsize: 20,
 }
})
</script>

7、myswiper.scrollbar.el

获取滚动条的html元素,还可以通过$el获取dom7。

8、myswiper.scrollbar.dragel

获取滚动条指示条的html元素,还可通过$dragel获取dom7。

9、myswiper.scrollbar.updatesize()

更新滚动条。

swiper Scrollbar滚动条组件详解

<!doctype html>
<html>
<head>
 <meta charset="utf-8">
 <title>swiper-scrollbar滚动条组件</title>
 <link rel="stylesheet" href="css/swiper.min.css" >
 <style>
 .swiper-container{
  width: 500px;
  height: 214px;
  margin-bottom: 10px;
 }
 .swiper-slide{
  text-align: center;
  line-height: 214px;
  font-size: 80px;
  color: #fff;
 }
 </style>
</head>
 
<body>
 <div class="swiper-container">
 <div class="swiper-wrapper">
  <div class="swiper-slide" style="background: #ff8604">slide1</div>
  <div class="swiper-slide" style="background: #4390ee">slide2</div>
  <div class="swiper-slide" style="background: #ca4040">slide3</div>
 </div>
 <div class="swiper-scrollbar"></div>
 </div>
 
 <script src="js/swiper.min.js"></script>
 <script>
 var myswiper = new swiper('.swiper-container',{
  scrollbar: {
  el: '.swiper-scrollbar',
  hide: true,
  draggable: false,
  snaponrelease: true,
  dragsize: 20,
  }
 })
 myswiper.scrollbar.$el.css('height','6px');
 myswiper.scrollbar.$dragel.css('background','#fff');
 myswiper.scrollbar.updatesize();
 </script>
 
</body>
</html>

注:swiper.min.css,swiper.min.js文件直接上swiper官网下载。

参考swiper api文档

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