zoukankan      html  css  js  c++  java
  • Vuejs实现轮播图

    css:

    <style type="text/css">
    * {
    margin: 0;
    padding: 0;
    list-style: none;
    }
    .clearfix {
    content: '';
    clear: both;
    display: block;
    }
    .carousel {
    500px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    }
    .slide {
    500px;
    height: 300px;
    }
    li {
    position: absolute
    }
    img {
    500px;
    height: 300px;
    }
    .bullet {
    100%;
    position: absolute;
    bottom: 10px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    }
    span {
    20px;
    height: 5px;
    border: 1px solid;
    background: white;
    display: inline-block;
    margin-right: 10px;
    }
    .active {
    background: red;
    }
    .image-enter-active {
    transform: translateX(0);
    transition: all 1s ease;
    }
    .image-leave-active {
    transform: translateX(-100%);
    transition: all 1s ease;
    }
    .image-enter {
    transform: translateX(100%)
    }
    .image-leave {
    transform: translateX(0)
    }
    </style>

    html:

    <div class="carousel">
    <transition-group tag='ul' class="clearfix slide" name='image'>
    <li v-for='(image,index) in img' :key='index' v-show='index===mark'>
    <a><img :src="image"></a>
    </li>
    </transition-group>

    <div class="bullet">
    <span v-for='(item,index) in img.length' :class="{'active':index===mark}" @click='change(index)'></span>
    </div>

    </div>

    js:

    new Vue({
    el: '.carousel',
    data: {
    mark: 0,
    timer: null,
    img: ['//upload-images.jianshu.io/upload_images/3360875-5625658440cb542d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240',
    '//upload-images.jianshu.io/upload_images/3360875-b70e9d81d26e2a27.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240',
    '//upload-images.jianshu.io/upload_images/3360875-dc724649454c2ddc.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240',
    '//upload-images.jianshu.io/upload_images/3360875-d2148a1bb7ea9d21.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240'
    ]
    },
    created() {
    this.play()
    },
    methods: {
    change(i) {
    this.mark = i
    },
    autoPlay() {
    this.mark++
    if (this.mark === 4) {
    this.mark = 0
    return
    }
    },
    play() {
    setInterval(this.autoPlay, 3000)
    }
    }
    })

    不忘初心,方得始终,初心易得,始终难守。
  • 相关阅读:
    loj#2540. 「PKUWC2018」随机算法
    loj#2538. 「PKUWC2018」Slay the Spire
    loj#2537. 「PKUWC2018」Minimax
    CF662C Binary Table
    bzoj4589: Hard Nim
    【HDU5909】Tree Cutting(FWT)
    P3175 [HAOI2015]按位或
    P4389 付公主的背包
    P4233 射命丸文的笔记
    GFS分布式文件系统环境部署与管理
  • 原文地址:https://www.cnblogs.com/chuxinsyn/p/7977964.html
Copyright © 2011-2022 走看看