uniapp 实现一个页面,瀑布流播放视频
时间: 2024-03-07 07:41:55 浏览: 140
首先需要安装uni-app和uni-ui插件。
1. 创建一个uni-app项目,选择uni-ui模板。
2. 在pages文件夹下创建一个WaterfallFlow文件夹,用于存放瀑布流页面相关的文件。
3. 在WaterfallFlow文件夹下创建WaterfallFlow.vue文件,编写页面结构和样式。
```html
<template>
<view class="container">
<view class="waterfall-flow">
<view class="waterfall-item" v-for="(item, index) in list" :key="index">
<video :src="item.videoUrl" :poster="item.posterUrl" :autoplay="false" :controls="true" @click="playVideo(index)"></video>
</view>
</view>
</view>
</template>
<style>
.container {
padding: 20px;
}
.waterfall-flow {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.waterfall-item {
width: 48%;
margin-bottom: 20px;
}
video {
width: 100%;
height: 200px;
object-fit: cover;
}
</style>
```
4. 在script标签中定义数据和方法。
```js
<script>
export default {
data() {
return {
list: [
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
},
{
videoUrl: 'http://xxx.com/xxx.mp4',
posterUrl: 'http://xxx.com/xxx.jpg'
}
]
}
},
methods: {
playVideo(index) {
const video = this.$refs[`video${index}`][0]
video.play()
}
}
}
</script>
```
5. 在main.js中引入并注册uni-ui插件。
```js
import Vue from 'vue'
import App from './App'
import uniUi from 'uni-ui'
Vue.use(uniUi)
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
```
6. 运行uni-app项目,在微信小程序或H5中查看瀑布流页面,点击视频即可播放。
阅读全文