<!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>
|