video视频播放

1.列表页面

javascript 复制代码
<template>
  <div>
    <ul>
      <li class="item" v-for="(item,index) in list" :key="index" @click="turnPlay(item.videoUrl)">
        <img :src="item.img" alt="">
        <div class="btn">
          <i class="el-icon-caret-right"></i>
        </div>
        <div class="mask">一行白鹭上青天一行白鹭上青天一行白鹭上青天</div>
      </li>
    </ul>
  </div>
</template>

<script>
export default {
  data () {
    return {
      list: [
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        },
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        },
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        },
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        },
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        },
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        },
        {
          img: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.png',
          videoUrl: 'https://oss.ncsis.org.cn:9000/test/龙年拜年.mp4'
        }
      ]
    }
  },
  methods: {
    turnPlay (url) {
      window.open(`${window.location.origin}/#/playVideo?url=${url}`, '_blank')
    }
  }
}
</script>

<style lang="less" scoped>
ul {
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  border: 1px solid red;
  box-sizing: border-box;
  justify-content: space-between;
  li {
    width: calc(90% / 6);
    height: 240px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: all 1s ease 0s;
      &:hover {
        transform: scale(1.2);
      }
    }
    .btn {
      position: absolute;
      top: 100px;
      left: 50%;
      width: 40px;
      height: 40px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translate(-50%, 0);
      .el-icon-caret-right {
        font-size: 30px;
        color: #fff;
      }
    }
    .mask {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background: linear-gradient(transparent 0, rgba(0, 0, 0, 0.75) 100%);
      line-height: 40px;
      padding: 0 5px 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #fff;
    }
  }
}
</style>

2.视频页面

javascript 复制代码
<template>
  <div class="content">
    <div class="item">
      <div class="title">{{title}}</div>
      <video width="1080" v-if="url" ref="videoRef" height="550" controlsList="nodownload" preload poster="" controls class="video">
        <source :src="url" type="video/mp4">
      </video>
    </div>
  </div>
</template>

<script>
export default {
  data () {
    return {
      title: '一行白鹭上青天',
      url: ''
    }
  },
  created () {
    this.url = this.$route.query.url
  },
  mounted () {
    if (this.url) {
      this.$refs.videoRef.play()
    }
  }
}
</script>

<style lang="less" scoped>
.content {
  width: 100%;
  height: 100vh;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  .item {
    display: flex;
    flex-direction: column;
  }
}
</style>

需要注意我这里跳转页面路由模式是'hash',如果是 'history',页面会跳转错误

相关推荐
Mr.简锋37 分钟前
opencv视频读写
人工智能·opencv·音视频
陈随易44 分钟前
农村程序员-关于小孩教育的思考
前端·后端·程序员
云深时现月1 小时前
jenkins使用cli发行uni-app到h5
前端·uni-app·jenkins
昨天今天明天好多天1 小时前
【Node.js]
前端·node.js
2401_857610031 小时前
深入探索React合成事件(SyntheticEvent):跨浏览器的事件处理利器
前端·javascript·react.js
_xaboy1 小时前
开源项目低代码表单设计器FcDesigner扩展自定义的容器组件.例如col
vue.js·低代码·开源·动态表单·formcreate·低代码表单·可视化表单设计器
_xaboy1 小时前
开源项目低代码表单设计器FcDesigner扩展自定义组件
vue.js·低代码·开源·动态表单·formcreate·可视化表单设计器
雾散声声慢1 小时前
前端开发中怎么把链接转为二维码并展示?
前端
熊的猫1 小时前
DOM 规范 — MutationObserver 接口
前端·javascript·chrome·webpack·前端框架·node.js·ecmascript
天农学子1 小时前
Easyui ComboBox 数据加载完成之后过滤数据
前端·javascript·easyui