Swiper-框架介绍

关于Swiper

目前有Swiper4.x、Swiper3.x和Swiper2.x这三个版本
Swiper 是一款免费以及轻量级的移动设备触控滑块的js框架,使用硬件加速过渡(如果该设备支持的话)。主要使用于移动端的网站、移动web apps,native apps和hybrid apps。主要是为IOS而设计的,同时,在Android、WP8系统也有着良好的用户体验,Swiper从3.0开始不再全面支持PC端。因此,如需在PC上兼容更多的浏览器,可以选择Swiper2.x(甚至支持IE7)。
Swiper2.http://2.swiper.com.cn/usage/index.html
Swiper4.x的全部配置选项、方法、函数 http://www.swiper.com.cn/api/pagination/299.html
妙味课程Swiper移动端课程: 教学视频 https://study.miaov.com/study/show/chapter/271

Swiper4x. 基本配置

Swiper组件放在最上面

Swiper组件放在最上面
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link rel="stylesheet" href="https://cdn.bootcss.com/Swiper/4.2.0/css/swiper.min.css">
    <style media="screen">
        .swiper-container {
            /* 宽高设置、不写是全屏 */
            width: 1150px;
        }

        @media (max-width: 1150px) {
            .swiper-container {
                width: 100%;
            }
        }

        .swiper-slide {
            font-size: 50px;
            line-height: 300px;
            text-align: center;
        }

        .swiper-pagination-bullet {
            /* 更改分页器css样式 */
            width: 20px;
            height: 20px;
        }

        .swiper-pagination-bullet-active {
            /* 更改分页器 active の css样式 */
            background-color: red;
            width: 50px;
            border-radius: 5px;
        }

        .swiper-button-prev {
            width: 40px;
            height: 70px;
            background: url(首页-HIKER教育平台-HIKER教育平台_files/prevBtn.png) no-repeat;
            opacity: 0.5;
        }

        .swiper-button-prev:hover {
            opacity: 1;
        }
    </style>
</head>

<body>
    <div id="swiper_Name"><!-- 轮播图名字 -->
        <div class="swiper-container">
            <div class="swiper-wrapper">
                <div class="swiper-slide" style="background-color: #ffc;">Slide 1</div>
                <div class="swiper-slide" style="background-color: #fcc;">Slide 2</div>
            </div>

            <!-- 如果需要分页器 -->
            <div class="swiper-pagination"></div>

            <!-- 如果需要导航按钮 -->
            <div class="swiper-button-prev"></div>
            <div class="swiper-button-next"></div>

            <!-- 如果需要滚动条 -->
            <!-- <div class="swiper-scrollbar"></div> -->
        </div>
    </div>

    <script type="text/javascript " src="https://cdn.bootcss.com/Swiper/4.5.0/js/swiper.js"></script>
    <!-- Swiper 设置部分 -->
    <script>
        var mySwiper = new Swiper('#swiper_Name .swiper-container', {
            direction: 'horizontal', //  竖屏 vertical  、 横屏 horizontal
            loop: true, //  打开之后,克隆最后一屏、放在整体最上面。实现轮播效果
            initialSlide: 0, //  设定初始化时slide的索引。  默认:0
            speed: 300, //  切换速度
            grabCursor: true, //  抓手光标
            autoplay: {
               disableOnInteraction: false,// false: 触碰后自动切换也不会停止
            },
            // autoplay: {     //等同于以下设置
            //     delay: 3000,
            //     stopOnLastSlide: false,
            //     disableOnInteraction: true,
            // },
            // slidesPerView: 3.8,   //  3.8个 'slide' 占满全屏
            // slidesPerView: 'auto',  //  自适应  每个'slide'的宽 以自定义的形式出现 (eg:13%)
            // spaceBetween: 10,  //  'slide' 与 'slide' 之间的距离
            // 如果需要分页器
            pagination: {
                el: '#swiper_Name .swiper-pagination',
                clickable: true,
            },
            //
            // // 如果需要前进后退按钮
            navigation: {
                nextEl: '#swiper_Name .swiper-button-next',
                prevEl: '#swiper_Name .swiper-button-prev',
            },
            //
            // // 如果需要滚动条
            // scrollbar: {
            //   el: '.swiper-scrollbar',
            // },
        })
    </script>
</body>

</html>

为了让轮播图自适应

// <!-- 轮播图 Swiper高度自适应 -->
$(window).on('scroll load resize', function() {
    $('.swiper-container').css('height', $('.banner img').height());

})

image.png
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Swiper demo</title>
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
    <!-- Link Swiper's CSS -->
    <link rel="stylesheet" href="https://cdn.bootcss.com/Swiper/4.2.0/css/swiper.min.css">
    <link rel="stylesheet" href="../dist/css/swiper.min.css">

    <!-- Demo styles -->
    <style>
        html,
        body {
            position: relative;
            height: 100%;
        }

        body {
            background: #000;
            font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
            font-size: 14px;
            color: #000;
            margin: 0;
            padding: 0;
        }

        .swiper-container {
            width: 100%;
            height: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .swiper-slide {
            background-size: cover;
            background-position: center;
        }

        .gallery-top {
            height: 80%;
            width: 100%;
        }

        .gallery-thumbs {
            height: 20%;
            box-sizing: border-box;
            padding: 10px 0;
        }

        .gallery-thumbs .swiper-slide {
            height: 100%;
            opacity: 0.4;
        }

        .gallery-thumbs .swiper-slide-thumb-active {
            opacity: 1;
        }
    </style>
</head>

<body>
    <!-- Swiper -->
    <div class="swiper-container gallery-top">
        <div class="swiper-wrapper">
            <div class="swiper-slide" style="background-image:url(../img/banner-1.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-2.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-1.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-2.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-1.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-2.png)"></div>
        </div>
        <!-- Add Arrows -->
        <div class="swiper-button-next swiper-button-white"></div>
        <div class="swiper-button-prev swiper-button-white"></div>
    </div>
    <div class="swiper-container gallery-thumbs">
        <div class="swiper-wrapper">
            <div class="swiper-slide" style="background-image:url(../img/banner-1.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-2.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-1.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-2.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-1.png)"></div>
            <div class="swiper-slide" style="background-image:url(../img/banner-2.png)"></div>
        </div>
    </div>

    <!-- Swiper JS -->
    <script type="text/javascript " src="https://cdn.bootcss.com/Swiper/4.5.0/js/swiper.js"></script>
    <script type="text/javascript " src="https://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>

    <!-- Initialize Swiper -->
    <script>
        var galleryThumbs = new Swiper('.gallery-thumbs', {
            spaceBetween: 10,
            slidesPerView: 4,
            loop: true,
            freeMode: true,
            loopedSlides: 5, //looped slides should be the same
            watchSlidesVisibility: true,
            watchSlidesProgress: true,
        });
        var galleryTop = new Swiper('.gallery-top', {
            spaceBetween: 10,
            loop: true,
            loopedSlides: 5, //looped slides should be the same
            navigation: {
                nextEl: '.swiper-button-next',
                prevEl: '.swiper-button-prev',
            },
            thumbs: {
                swiper: galleryThumbs,
            },
        });
    </script>
</body>

</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容