surprise
2024-01-15 87e98d5b5efeb7a9cf6330ae03e6dd53699b7ef1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
 
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="viewport"
    content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
  <title>洪水淹没分析</title>
  <link href="../SmartEarthSDK/Workers/layui/css/layui.css" rel="stylesheet" />
  <link href="./css/AnalysisContour.css" rel="stylesheet" />
  <style>
    .layui-input {
      width: 90px !important;
      background-color: #fff !important;
      margin-top: 8px;
      display: inline-block;
    }
 
    .layui-form-label {
      font-weight: bold !important;
      font-size: 15px;
    }
 
    .layui-form-label {
      margin: 8px 0 0 -26px;
      width: 130px;
      text-align: left;
    }
 
    .layui-input-block {
      margin-left: 14px;
    }
 
    .layui-form-item {
      width: 98% !important;
    }
 
    .layui-btn {
      padding: 0 12px;
      margin-left: 10px;
      background-color: rgba(0, 168, 255, 0.16) !important;
    }
 
    .type {
      width: 100%;
      height: 40px;
      line-height: 40px;
      text-indent: 20px;
      color: #fff;
      font-size: 15px;
      font-weight: bold;
 
    }
 
    video {
      object-fit: fill!important;
    }
  </style>
 
</head>
 
<body>
  <form class="layui-form" action="">
    <div class="type"></div>
    <video width="368" height="280" controls>
      <source src="../video/xihu.mp4" type="video/mp4">
      您的浏览器不支持 video 标签。
    </video>
  </form>
  <script>
    //获取地址栏参数信息
    function GetQueryString(name) {
      var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
      var r = window.location.search.substr(1).match(reg);
      if (r != null) return unescape(r[2]);
      return null;
    }
 
    const _type = GetQueryString('type');
    document.querySelector('.type').innerHTML = '- ' + unescape(_type)
 
  </script>
</body>
 
</html>