swiper 嵌套 video 视频不会随着列表滚动
出现平台 android
小程序正常
w***@163.com
- 发布:2019-03-18 19:30
- 更新:2020-09-14 17:29
- 阅读:5514
文档说的很清楚,video是原生组件,不能这么做。
app上,用nvue吧,hello uni-app里有顶部可拖动选项卡示例,或者新建项目时也有新闻模板
非app,其实可以把视图截图以图片形式放入swiper,点击后在新窗体播放视频
w***@163.com (作者) - 专业挖坑
<view class="uni-list">
<view class="uni-list-cell" hover-class="uni-list-cell-hover" v-for="(item,index) in news" :key="index" @tap="openinfo"
:data-newsid="item.news_id">
<videoItem v-if="item.show_type_id==63" :data="item"></videoItem>
</view>
<template>
<view class="uni-media-list">
<video :id="data.news_id" :src="data.news_video_url" controls></video>
</view>
</template>
w***@163.com (作者)
好的 才接触这玩意。。
2019-03-18 19:37