Vue图片、视频预览组件(vue-gallery)

背景

因项目需要,需要一款同时支持预览图片和视频的组件。最终选择vue-gallery实现。

项目地址:https://github.com/RobinCK/vue-gallery

安装

npm

npm install vue-gallery

yarn

yarn add vue-gallery

官网使用示例

<template>
  <div>
    <gallery :images="images" :index="index" @close="index = null"></gallery>
    <div
      class="image"
      v-for="(image, imageIndex) in images"
      :key="imageIndex"
      @click="index = imageIndex"
      :style="{ backgroundImage: 'url(' + image + ')', width: '300px', height: '200px' }"
    ></div>
  </div>
</template>

<script>
  import VueGallery from 'vue-gallery';
  
  export default {
    data: function () {
      return {
        images: [
          'https://dummyimage.com/800/ffffff/000000',
          'https://dummyimage.com/1600/ffffff/000000',
          'https://dummyimage.com/1280/000000/ffffff',
          'https://dummyimage.com/400/000000/ffffff',
        ],
        index: null
      };
    },

    components: {
      'gallery': VueGallery
    },
  }
</script> 

<style scoped>
  .image {
    float: left;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #ebebeb;
    margin: 5px;
  }
</style>

存在问题

        官网示例中只提供了图片预览示例,并未提供视频预览示例,起初直接将视频地址加入images列表,视频不能正常预览。

解决思路

        通过分析vue-gallery的依赖,发现依赖blueimp-gallery组件。

        官网地址为https://blueimp.github.io/Gallery/

        blueimp-gallery支持预览图片和视频,官方示例代码如下:

blueimp.Gallery([
  {
    title: 'Fruits',
    type: 'video/mp4',
    href: 'https://example.org/videos/fruits.mp4',
    poster: 'https://example.org/images/fruits.jpg'
  },
  {
    title: 'Banana',
    type: 'image/jpeg',
    href: 'https://example.org/images/banana.jpg',
    thumbnail: 'https://example.org/thumbnails/banana.jpg'
  }
])

The Gallery uses the type property to determine the content type of the object to display.
If the type property is empty or doesn't exist, the default type image is assumed.
Objects with a video type will be displayed in a HTML5 video element if the browser supports the video content type.

For videos, the poster property defines the URL of the poster image to display, before the video is started.

参考官网改造images列表,改造后如下:

images: [
  {
	title: 'Fruits',
	type: 'video/mp4',
	href: 'https://example.org/videos/fruits.mp4',
	poster: 'https://example.org/images/fruits.jpg'
  },
  {
	title: 'Banana',
	type: 'image/jpeg',
	href: 'https://example.org/images/banana.jpg',
	thumbnail: 'https://example.org/thumbnails/banana.jpg'
  }
],

改造后的页面:

<template>
  <div>
    <gallery :images="images" :index="index" @close="index = null"></gallery>
    <div
      class="image"
      v-for="(image, imageIndex) in images"
      :key="imageIndex"
      @click="index = imageIndex"
      :style="{ backgroundImage: 'url(' + image + ')', width: '300px', height: '200px' }"
    ></div>
  </div>
</template>

<script>
  import VueGallery from 'vue-gallery';
  
  export default {
    data: function () {
      return {
        images: [
          {
            title: 'Fruits',
            type: 'video/mp4',
            href: 'https://example.org/videos/fruits.mp4',
            poster: 'https://example.org/images/fruits.jpg'
          },
          {
            title: 'Banana',
            type: 'image/jpeg',
            href: 'https://example.org/images/banana.jpg',
            thumbnail: 'https://example.org/thumbnails/banana.jpg'
          }
        ],
        index: null
      };
    },

    components: {
      'gallery': VueGallery
    },
  }
</script> 

<style scoped>
  .image {
    float: left;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #ebebeb;
    margin: 5px;
  }
</style>
  • 1
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 6
    评论
引用\[1\]中提到了一个场景,即在一个项目中需要实现一个图片预览组件,支持放大预览、切换音视频和文件、缩放、旋转、移动等功能。该组件已经封装好,注释详细,可以直接拿来使用。引用\[2\]中提到了一个适用于Vue 3.0的视频播放插件vue3-video-play,该插件的UI和功能都很好,可以作为实现视频播放功能的参考。引用\[3\]中提到了定义一个transform样式对象,包含缩放、旋转、移动等属性,可以在computed计算属性中返回一个由该对象组成的CSS样式对象,然后在模板中将该样式对象绑定到图片上,当触发特效相关的事件时,改变对象中的某个值,就会重新计算computed属性,从而实时更新图片的样式。 综合以上引用内容,可以根据项目需求使用已封装好的图片预览组件,并结合vue3-video-play插件实现视频播放功能。同时,可以定义一个transform样式对象,通过computed属性实时更新图片的样式,以实现缩放、旋转、移动等效果。 #### 引用[.reference_title] - *1* *2* *3* [Vue3.0实现图片预览组件(媒体查看器)](https://blog.csdn.net/dabaooooq/article/details/128841487)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

dongyuan234

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值