资讯专栏INFORMATION COLUMN

好看的轮播切换效果

zzzmh / 937人阅读

微博上看到@过气网红一丝 发的,特地收集。

预览

html

css

 .btn-group {
        position: relative;
        display: inline-block;
    }
    .btn-group .btn {
        cursor: pointer;
        float: left;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.3);
        margin-left: 6px;
        margin-top: 1px;
    }
    .btn-group .btn:first-child {
        margin-left: 3px;
    }
    .btn-group svg {
        z-index: -1;
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: visible;
    }
    .btn-group path {
        fill: none;
        stroke: #eee;
        stroke-dasharray: 39, 99999;
        transition: all 1s ease-in-out;
        stroke-width: 2;
    }
    .slides {
        transition: left 1s ease-in-out;
        height: 100vh;
        position: absolute;
    }
    .slides .slide {
        height: 100vh;
        width: 100vw;
        float: left;
    }
    .slides .slide:nth-child(1) {
        background: #c66;
    }
    .slides .slide:nth-child(2) {
        background: #acac39;
    }
    .slides .slide:nth-child(3) {
        background: #39ac39;
    }
    .slides .slide:nth-child(4) {
        background: #40bfbf;
    }
    .slides .slide:nth-child(5) {
        background: #8c8cd9;
    }
    body {
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    .nav {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 5%;
        transform: translateY(-50%);
    }

js

  const pathLength = 39;
    const BtnGroup = class BtnGroup {
        constructor(group) {
            this.buttonSpacing = 20;
            this.group = group;
            this.buttons = Array.prototype.slice.call(this.group.querySelectorAll(".btn"));
            this.slides = Array.prototype.slice.call(document.querySelectorAll(".slide"));
            this.slideContainer = document.querySelector(".slides");
            this.slideContainer.style.width = this.slides.length + "00vw";
            this.svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
            this.svg.setAttribute("viewbox", "0 0 " + (this.buttonSpacing * this.buttons.length) + " 16");
            this.path = document.createElementNS("http://www.w3.org/2000/svg", "path");
            this.path.classList.add("line");
            this.currentPath = "M " + (-this.buttonSpacing / 2) + ", 14";
            this.currentIndex = -1;
            this.activateIndex(this.buttons.indexOf(this.group.querySelector(".active")));
            this.group.appendChild(this.svg);
            this.svg.appendChild(this.path);
            this.refreshPath();
            this.initButtons();

            for (const button of this.buttons) {
                button.addEventListener("click", e => this.onClick(e));
            }
        }

        initButtons() {
            for (var i = 0; i < this.buttons.length; i++) {
                const center = this.center(i);
                const path = document.createElementNS("http://www.w3.org/2000/svg", "path");
                let pathStr = "";
                pathStr += "M" + (center    ) + ", 14 ";
                pathStr += "C" + (center + 3) + ", 14 ";
                pathStr +=       (center + 6) + ", 11 ";
                pathStr +=       (center + 6) + ",  8 ";
                pathStr += "C" + (center + 6) + ",  5 ";
                pathStr +=       (center + 3) + ",  2 ";
                pathStr +=       (center    ) + ",  2 ";
                pathStr += "C" + (center - 3) + ",  2 ";
                pathStr +=       (center - 6) + ",  5 ";
                pathStr +=       (center - 6) + ",  8 ";
                pathStr += "C" + (center - 6) + ", 11 ";
                pathStr +=       (center - 3) + ", 14 ";
                pathStr +=       (center    ) + ", 14 ";
                path.setAttributeNS(null, "d", pathStr);
                path.classList.add("circle");
            }
        }

        onClick(e) {
            const index = this.buttons.indexOf(e.srcElement || e.target);
            this.activateIndex(index);
        }

        refreshPath() {
            this.path.setAttributeNS(null, "d", this.currentPath);
            this.path.style.strokeDashoffset = (-this.path.getTotalLength() + pathLength) * 0.9965;
        }

        center(index) {
            return index * this.buttonSpacing + (this.buttonSpacing / 2);
        }

        removeClass(str) {
            if (this.buttons[this.currentIndex]) {
                this.buttons[this.currentIndex].classList.remove(str);
            }
        }

        addClass(str) {
            if (this.buttons[this.currentIndex]) {
                this.buttons[this.currentIndex].classList.add(str);
            }
        }

        activateIndex(index) {
            this.slideContainer.style.left = -index + "00vw";
            const lastCenter = this.center(this.currentIndex);
            const nextCenter = this.center(index);
            const offset = 0;
            const sign = index < this.currentIndex ? -1 : 1;
            this.currentPath += "C" + (lastCenter + sign * 3) + ", 14 ";
            this.currentPath +=       (lastCenter + sign * 6) + ", 11 ";
            this.currentPath +=       (lastCenter + sign * 6) + ",  8 ";
            this.currentPath += "C" + (lastCenter + sign * 6) + ",  5 ";
            this.currentPath +=       (lastCenter + sign * 3) + ",  2 ";
            this.currentPath +=       (lastCenter           ) + ",  2 ";
            this.currentPath += "C" + (lastCenter - sign * 3) + ",  2 ";
            this.currentPath +=       (lastCenter - sign * 6) + ",  5 ";
            this.currentPath +=       (lastCenter - sign * 6) + ",  8 ";
            this.currentPath += "C" + (lastCenter - sign * 6) + ", 11 ";
            this.currentPath +=       (lastCenter - sign * 3) + ", 14 ";
            this.currentPath +=       (lastCenter           ) + ", 14 ";
            this.currentPath += "L" + (nextCenter           ) + ", 14 ";
            this.currentPath += "C" + (nextCenter + sign * 3) + ", 14 ";
            this.currentPath +=       (nextCenter + sign * 6) + ", 11 ";
            this.currentPath +=       (nextCenter + sign * 6) + ",  8 ";
            this.currentPath += "C" + (nextCenter + sign * 6) + ",  5 ";
            this.currentPath +=       (nextCenter + sign * 3) + ",  2 ";
            this.currentPath +=       (nextCenter           ) + ",  2 ";
            this.currentPath += "C" + (nextCenter - sign * 3) + ",  2 ";
            this.currentPath +=       (nextCenter - sign * 6) + ",  5 ";
            this.currentPath +=       (nextCenter - sign * 6) + ",  8 ";
            this.currentPath += "C" + (nextCenter - sign * 6) + ", 11 ";
            this.currentPath +=       (nextCenter - sign * 3) + ", 14 ";
            this.currentPath +=       (nextCenter           ) + ", 14 ";
            this.removeClass("active");
            this.currentIndex = index;
            this.addClass("active");
            this.refreshPath();
        }
    }

    const groups = Array.prototype.slice.call(document.querySelectorAll(".btn-group"));

    for (const group of groups) {
        console.log(new BtnGroup(group));
    }

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/79302.html

相关文章

  • 好看轮播切换效果

    微博上看到@过气网红一丝 发的,特地收集。showImg(https://segmentfault.com/img/bVu81W); 预览 html css .btn-group { position: r...

    Apollo 评论0 收藏0
  • 实现简单轮播

    摘要:小练习轮播图组件任务描述在和上一任务同一目录下面创建一个文件,在目录中创建,并在其中编码,实现一个轮播图的功能。实现思路考察对节点,定时器,事件的处理。 小练习3:轮播图组件 任务描述在和上一任务同一目录下面创建一个task0002_3.html文件,在js目录中创建task0002_3.js,并在其中编码,实现一个轮播图的功能。 图片数量及URL均在HTML中写好 可以配置轮播的顺...

    EsgynChina 评论0 收藏0
  • 基于CSS3实现淡入(fadeIn)淡出(fadeOut)效果

    摘要:网上的淡入淡出效果大多是依照中和的方法使用来控制元素的透明度达到目的,但缺点是有轻微的卡顿感,并且运行效率一般。思路是将淡入,淡出的效果做成预先定义好的样式类,然后用改变元素的类来达到图片轮播。 网上的淡入淡出效果大多是依照jquery中fadeIn和fadeOut的方法使用js来控制元素的透明度达到目的,但缺点是有轻微的卡顿感,并且运行效率一般。 这里提供另外一个思路,即通过预先定义...

    XUI 评论0 收藏0
  • 写jquery插件【轮播图】历程

    摘要:轮播图插件的任务已经接近尾声,在书写轮播图期间确实有一些小的感触的。 轮播图插件的任务已经接近尾声,在书写轮播图期间确实有一些小的感触的。感兴趣的可以访问我的轮播图的线上地址:轮播图 首先,轮播图插件其实并不是我第一次写,之前也写过,不过那时候是按照别人的思路写下来的,算起来大概有一年了,这次又一次开始轮播图是因为拜读了《单页面Web应用 JavaScript从前端到后端》的这本书的1...

    khlbat 评论0 收藏0
  • 写jquery插件【轮播图】历程

    摘要:轮播图插件的任务已经接近尾声,在书写轮播图期间确实有一些小的感触的。 轮播图插件的任务已经接近尾声,在书写轮播图期间确实有一些小的感触的。感兴趣的可以访问我的轮播图的线上地址:轮播图 首先,轮播图插件其实并不是我第一次写,之前也写过,不过那时候是按照别人的思路写下来的,算起来大概有一年了,这次又一次开始轮播图是因为拜读了《单页面Web应用 JavaScript从前端到后端》的这本书的1...

    snowLu 评论0 收藏0

发表评论

0条评论

zzzmh

|高级讲师

TA的文章

阅读更多
最新活动
阅读需要支付1元查看
<