// JavaScript Document if(isFrontEnv()) { let video = document.querySelector("#cn-video"); if (window.WeixinJSBridge) { WeixinJSBridge.invoke('getNetworkType', {}, function (e) { video.play(); }, false); } else { document.addEventListener("WeixinJSBridgeReady", function () { WeixinJSBridge.invoke('getNetworkType', {}, function (e) { video.play(); }); }, false); } if (navigator.userAgent.indexOf("Android") > 0) { if(navigator.userAgent.toLowerCase().match(/MicroMessenger/i)=="micromessenger") { document.addEventListener('touchstart', function() { video.play() }); } } }