金五联管理系统PC前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jwl-manage-web/public/index.html

100 lines
2.6 KiB

2 years ago
<!DOCTYPE html>
<html>
<head>
2 years ago
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
2 years ago
<title><%= webpackConfig.name %></title>
2 years ago
<!--[if lt IE 11
]><script>
window.location.href = '/html/ie.html';
</script><!
[endif]-->
<style>
html,
body,
#app {
height: 100%;
margin: 0px;
padding: 0px;
2 years ago
}
2 years ago
.chromeframe {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
2 years ago
}
2 years ago
.logo {
position: absolute;
display: block;
left: 50%;
top: 50%;
width: 100px;
/* height: 162px; */
transform: translate3d(-50%, -80px, 0);
animation: twinkling 1.2s infinite ease-in-out;
2 years ago
}
2 years ago
/* .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
} */
@keyframes twinkling {
0% {
opacity: 0.8;
}
50% {
opacity: 0.4;
}
100% {
opacity: 0.8;
}
}
.loading {
position: absolute;
display: block;
left: 50%;
top: 50%;
transform: translate3d(-50%, 80px, 0);
color: #fefeff;
font-size: 14px;
}
canvas {
display: block;
left: 50%;
position: absolute;
top: 50%;
transform: translate3d(-50%, 100px, 0);
2 years ago
}
2 years ago
#loader-wrapper {
position: relative;
width: 100%;
height: 100%;
background: #1a1a34;
z-index: 1000;
}
</style>
<script src="/loading/prefixfree.min.js"></script>
2 years ago
</head>
<body>
<div id="app">
2 years ago
<div id="loader-wrapper">
<img class="logo animated" src="/logo.png" alt="" srcset="" />
<div class="loading">资源加载中...</div>
</div>
</div>
<script src="/loading/index.js"></script>
1 year ago
<script type="text/javascript">
window._AMapSecurityConfig = {
securityJsCode:'420463f2f8c849ab78b9d29548aff7d3',
}
</script>
1 year ago
<script src="http://res.wx.qq.com/connect/zh_CN/htmledition/js/wxLogin.js"></script>
1 year ago
<script src="https://webapi.amap.com/maps?v=1.4.15&key=ec6b7ebe38f7ff27126f7088d87a9091&plugin=AMap.Autocomplete,AMap.PlaceSearch,AMap.Geocoder,AMap.Scale"></script>
</body>
2 years ago
</html>