小小vue2.0图片查看器

一个 小小vue2.0的图片检察器组件

空闲下来封装了一个 vue2.0的图片检察器组件,经由过程这个更能轻易清楚地检察列表的一张张图片。已兼容 pc 跟挪动端,经由过程 npm 来下载装置运用。
This is an example

1、装置

npm install vue-imageview --save

2、运用

// example

<template>
    <div class="hello">
        <transition name="slide-fade" class="fadeView">
            <div v-if="show">
                <image-view :imgArr="imgArr" 
                            :showImageView="true"
                            :imageIndex="imageIndex"
                            v-on:hideImage="hideImageView"></image-view>
            </div>
        </transition>
        <h1 @click="showImgView">显现隐蔽</h1>
        <img v-for="(item, index) in imgArr" :src="item" @click="selectImg(index)">
    </div>
</template>

<script>
  import imageView from 'vue-imageview'
  export default {
    name: 'hello',
    components: {
      'image-view': imageView
    },
    data () {
      return {
        // 图片数组
        imgArr: ['/public/img/1.jpeg', '/public/img/2.jpeg', '/public/img/2.jpeg', '/public/img/3.jpeg', '/public/img/4.jpeg', '/public/img/5.jpeg', '/public/img/6.jpeg'],
        // 显现组件
        show: false,
        // 从哪一张图片最先
        imageIndex: 0
      }
    },
    methods: {
      showImgView () {
        this.show = true
      },
      hideImageView () {
        this.show = false
      },
      selectImg (index) {
        this.show = true
        this.imageIndex = index
      }
    }
  }
</script>

<style scoped>
    .slide-fade-enter-active {
        transition: opacity .5s ease;
    }

    .slide-fade-leave-active {
        transition: opacity .5s ease;
    }

    .slide-fade-enter, .slide-fade-leave-active {
        opacity: 0;
    }
    h1, h2 {
        margin: 0;
        padding: 0;
    }
    img {
        display: block;
        margin: 10px auto;
        max-width: 400px;
    }
</style>

3、参数设置

参数范例申明必要
imgArrarray图片数组
showblooean显现组件开关
imageIndexnumber从第几张图片最先显现No

ps: 以后会更新到多指操纵,放大、减少、挑选,加文字申明等等等等,凑字凑字数~凑字凑字数~凑字凑字数~
自勉吧~~~

    原文作者:naice
    原文地址: https://segmentfault.com/a/1190000009210362
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞