heyang 3 years ago
parent
commit
f6d9db4b45
1 changed files with 11 additions and 7 deletions
  1. 11 7
      screenAndroid/WXtrialInterface.html

+ 11 - 7
screenAndroid/WXtrialInterface.html

@@ -117,13 +117,17 @@
 		var isAudioPlay = false;
 		var video = document.getElementById("playerVideo");
 		video.play();
-		$.alert({
-			title: '提示',
-			text: '开始使用云手机',
-			onOK: function () {
-				isAudioPlay = true;
-			}
-		});
+		setTimeout(() => {
+			$.alert({
+				title: '提示',
+				text: '开始使用云手机',
+				onOK: function () {
+					setTimeout(() => {
+						isAudioPlay = true;
+					}, 1000);
+				}
+			});
+		}, 1000)
 		var topwinHeight = window.screen.height - window.innerHeight + 30; //计算title top 头部  
 		$('#wine').css({
 			"width": window.screen.width,