1
13693261870
2024-04-03 c2159538c8b30ad162ade9c4f13c1195cd40cd9f
Terra.YaoGan.Web/Terra.YaoGan.Web/mp4.html
@@ -1,8 +1,15 @@
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>视频播放</title>
    <title>mp4.html</title>
    <meta http-equiv="Expires" content="0" />
    <meta http-equiv="Cache" content="no-cache" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Cache-control" content="no-cache" />
    <link href="imgs/favicon.ico" rel="icon" type="image/x-icon" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
    <style>
        html, body {
            margin: 0;
@@ -23,10 +30,10 @@
        }
        function getQueryString(name) {
            let reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
            let r = window.location.search.substr(1).match(reg);
            var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
            var r = window.location.search.substring(1).match(reg);
            if (r != null) {
                return unescape(r[2]);
                return decodeURI(r[2]);
            };
            return null;
        }
@@ -42,7 +49,7 @@
    </script>
</head>
<body>
    <video id="video" controls="controls">
    <video id="video" width="580" height="450" controls="controls" loop="loop" autoplay="autoplay">
        <source src="" type="video/mp4">
    </video>
</body>