


When playing videos under WeChat on ios and Android phones, you will encounter many problems. For example, you need to manually click before the video will play, and the video will jump out of the WeChat box and a control bar will appear. If the video is not Tencent Video, After playing, problems such as Tencent Video's advertising push will appear.
Solution: Add some attributes to the video tag and call h5 native video.
<video id="videoALL" src="video/01.mp4" poster="images/1.jpg" /*视频封面*/ preload="auto" webkit-playsinline="true" /*这个属性是ios 10中设置可以 让视频在小窗内播放,也就是不是全屏播放*/ playsinline="true" /*IOS微信浏览器支持小窗内播放*/ x-webkit-airplay="allow" x5-video-player-type="h5" /*启用H5播放器,是wechat安卓版特性*/ x5-video-player-fullscreen="true" /*全屏设置, 设置为 true 是防止横屏*/> x5-video-orientation="portraint" /*播放器支付的方向, landscape横屏,portraint竖屏,默认值为竖屏*/ style="object-fit:fill"></video>
poster="images/1.jpg": The attribute specifies the image displayed when the video is downloaded, or displayed before the user clicks the play button image. If this property is not set, the first frame of the video is used instead.
preload="auto" : The attribute specifies that the video is loaded after the page is loaded.
webkit-playsinlineand playsinline:When the video is played, it is played locally and does not break away from the document stream. But this attribute is quite special. It needs to be embedded in the webpage of the APP such as UIwebview in WeChat and allowsInlineMediaPlayback = YES webview.allowsInlineMediaPlayback = YES to take effect. In other words, if the APP does not set it up, adding this tag to your page will be invalid. This is why WeChat on Android phones always plays videos in full screen, because the APP does not support playsinline, but ISO WeChat does.
I would like to add here that if you want to do full-screen live broadcast or full-screen H5 experience, ISO needs to set and delete the webkit-playsinline tag, because it is not supported if you set it to false. Android does not need it because the default full screen. But at this time, full screen has playback controls, whether you have set the controls or not. Those who do live broadcast may need playback controls, but full-screen H5 does not need them. To remove the controls during full-screen playback, the following settings are required: same-layer playback.
x-webkit-airplay="allow"It is not possible to know exactly what it does, but the editor guesses that this attribute should make this video support the AirPlay function of ios. Using AirPlay, you can play videos, music, and photo files directly from different locations on your iOS device. That is to say, wireless playback of audio and video files can be achieved through the AirPlay function. Of course, the premise is that the terminal device for playback must also support the corresponding functions.
x5-video-player-type:Enable the H5 player on the same layer, that is, when the video is full screen, p can be presented on the video layer, also WeChat Android-specific properties. The alias of same-layer playback is also called immersive playback. It looks like full screen when playing, but the control and WeChat navigation bars have been removed, leaving only the "X" and "Android (including WeChat) and does not support iOS for the time being. As for why the same layer playback is only open to Android, it is because Android cannot play locally like ISO. The default full screen will block some interface operations. It is okay if it is full screen H5, but for live broadcast, functions such as barrage It cannot be realized, so the concept of same-layer playback solves this problem at this time. However, during the test, it was discovered that different versions of ISO and Android have slightly different effects.
x5-video-orientation:Declare the orientation supported by the player. The optional values are landscape horizontal screen and portrait vertical screen. Default value portrait. Whether it is live broadcast or full-screen H5, it is usually played vertically, but this attribute requires x5-video-player-type to turn on H5 mode
x5-video-player-fullscreen: Full screen setting. It has two attribute values, true and false. True supports full-screen playback, and false does not support full-screen playback.
In fact, ISO WeChat browser is the core of Chrome, and all related attributes are supported, which is why X5 does not support same-layer playback. The Android WeChat browser uses the X5 kernel, and some attribute tags such as playsinline are not supported, so it is always full screen.
There is another problem. In WeChat on Android, even if the above attributes are added, there will still be a problem with black borders on the top and bottom, and the screen cannot be full screen.
Solution: Add the style attribute object-fit: fill; to the video. If there are still black borders, it may be that the video size is inappropriate.
<p id="videobox"> <video id="videoALL" src="mp4.mp4" poster="1.jpg" preload="auto" webkit-playsinline="true" playsinline="true" x-webkit-airplay="allow" x5-video-player-type="h5" x5-video-player-fullscreen="true" x5-video-orientation="portraint" style="object-fit:fill"> </video> <p id="btn" onclick="playcontr()"></p></p><p id="videoend"><p id="againbtn" onclick="playcontr()"></p></p>
*{ padding: 0; margin: 0; } #videobox{position: absolute;width: 100%;height: 100%;background-color: green;background-image: url(1.jpg);background-size: 100% 100%;background-position: top;overflow: hidden;} #videoALL{ height: auto; position: absolute; width: 100%; top: 0; left: 0; object-fit: fill; display: block; background-size: cover; overflow: hidden;} #btn,#againbtn{width: 81px;height: 75px;position: absolute;top: 50%;left:50%;margin-top: -37.5px;margin-left: -40.5px;background-image: url(btn.png);background-size: 100% 100%;} #videoend{position: absolute;background-color: pink;display: none;background-image: url(2.jpg);background-size: cover;background-position: top;}
<script>var videoALL = document.getElementById('videoALL'), videobox = document.getElementById('videobox'), btn = document.getElementById('btn'), videoend = document.getElementById('videoend');var clientWidth = document.documentElement.clientWidth;var clientHeight = document.documentElement.clientHeight; videoALL.style.width = clientWidth + 'px'; videoALL.style.height = 'auto'; document.addEventListener('touchmove', function(e){e.preventDefault()}, false);function stylep(pId){ pId.style.width = clientWidth + 'px'; pId.style.height = clientHeight +200+ 'px'; } stylep(videobox); stylep(videoend);var u = navigator.userAgent; var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端 var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端 function playcontr(){ if (isAndroid) { videoALL.style.width = window.screen.width + 'px'; videoALL.style.height = window.screen.height + 'px'; } videobox.style.display = "block"; videoALL.play(); btn.style.display = "none"; videoend.style.display = "none"; }; videoALL.addEventListener('pause',function(){ videoALL.style.width = clientWidth + 'px'; btn.style.display = "block"; }) videoALL.addEventListener("ended",function(){ videoALL.pause(); videobox.style.display = "none"; videoend.style.display = "block"; });</script>
The above is the detailed content of Sample code for detailed analysis of H5 WeChat playback full-screen problem. For more information, please follow other related articles on the PHP Chinese website!

微信文件的过期时间需要根据情况来判断:1、如果发送的文件没有打开过,则在72小时以后微信系统会自动清理掉,即过了三天文件就会过期;2、如果已经查看了微信文件,但是并没有下载(当然已经下载的文件也是一样的),那么文件是可以保留180天的,在这180天以内随时都可以去下载。

区别:1、拉黑后对话框从主页消失,但是聊天记录还在;删除后聊天记录全部消失不见了。2、拉黑后还能发给他,但是收不到他的消息;删除后不能发信息了。3、拉黑后双方都不可见彼此的朋友圈;删除对方以后,你看不到对方的朋友圈了,对方是否能看到你的,取决于设置(允许陌生人查看十张照片)与否,如果设置则可以看到朋友圈。

支持微信付款的购物平台有:1、京东,是中国的综合网络零售商;2、唯品会,是一家在线销售品牌折扣商品的互联网公司;3、拼多多,是社交新电商领导者,更懂消费者的购物平台;4、京喜,是京东旗下生活消费商城;5、蘑菇街,一个电子商务网站;6、聚美优品,是一家以销售化妆品为主的时尚购物网站;7、微店,是一个云推广电子商务平台;8、考拉海购,是一个跨境海淘业务为主的会员电商平台。

可以。未经过实名认证的微信号,可以绑定他人的银行卡,但在绑定过程中需要提供银行卡的开户人姓名、开户行地址、开户时预留的联系方式及银行卡支付密码;已通过实名认证的微信号,无法绑定他人银行卡,只能添加使用自己身份证办理的银行卡。

不是,一个身份证能绑定5个微信。按照微信当前规定,一个身份证可以实名认证5个微信号;如果已经实名认证了5个微信账号,但是还想要继续实名,就要把已经实名认证的一些不用的微信号清除以后,才可以再实名认证新的微信号。

闲鱼是不支持微信支付的,仅支持使用支付宝进行付款;闲鱼是阿里巴巴旗下闲置交易平台App客户端,会员只要使用淘宝或支付宝账户登录,无需经过复杂的开店流程,即可达成包括一键转卖个人淘宝账号中“已买到宝贝”、自主手机拍照上传二手闲置物品、以及在线交易等诸多功能。

区别:1、赞赏码是用于别人给自己打赏的,收取小费等小金额的赞赏给予,而收款码是一般的收款行为,可以进行大额收费的二维码;2、收款码是随时会变的,如果不是商家收款码,每次打开都会变,但是赞赏码不同,赞赏码是不会变的;3、赞赏码只能进行小额的首款,而收款码将可以大额首款。

电脑微信打字打一个少一个是因为开启了改写状态,其解决办法:1、打开电脑微信;2、在微信聊天窗口输入对话文字内容;3、找到并按下键盘上的Insert键即可正常输入文字内容。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)
