自定义tabbar或者讲tabbar隐藏,在华为手机中出现,小米手机能点开,但是会闪烁。 不定义tabbar,视频能点开,能正常播放
自定义tabbar时,video组件requestFullScreen不能全屏,但是有声音?<template> <video v-if="showVideo" id="myVideo" :autoplay="true" controls @fullscreenchange="fullScreenChange" :show-fullscreen-btn="false" :src="videoUrl"></video> </template> <script setup> const showVideo = ref(false) const videoContext = ref(null) const videoUrl = ref("") const jumpToDetail = (item) => { showVideo.value = true videoUrl.value = item.content videoContext.value = uni.createVideoContext('myVideo') // 默认全屏 videoContext.value.requestFullScreen({ direction:0 }) } const fullScreenChange = (e)=>{ if(!e.detail.fullScreen){ showVideo.value = false } } </script>
2023-09-12我也遇到了这种问题,怎么处理的?就是在ios中偶尔会出现这种情况,其他都好
苹果手机小程序中打开webview页面白屏[图片] 小程序打开webview页面白屏 让客户试了直接在微信里面打开webview页面的链接也是白屏 小程序打开的截图: [图片] 微信浏览器打开的截图: [图片]
2023-09-07