Commit ec3621e6 authored by zhangyanni's avatar zhangyanni

提交静态文件

parent c387df21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404</title>
</head>
<body onload="onloadFunc()">
<div class="wrapper">
<div class="imgWrap">
<img src="./img/notFind.jpg" alt="">
</div>
<div class="tipWrap tipWrapZh">
<p>Sorry,您访问的页面开小差了,您可以点击下面的按钮,返回首页。</p>
<div class="buttonWrap" onclick="handleToHome()">
返回首页
</div>
</div>
<div class="tipWrap tipWrapEn">
<p>Page error, click the button to return.</p>
<div class="buttonWrap" onclick="handleToHome()">
Back to home
</div>
</div>
</div>
<script>
//获取cookie
function getCookie(c_name) {
//判断document.cookie对象里面是否存有cookie
if (document.cookie.length > 0) {
var c_start = document.cookie.indexOf(c_name + "=")
//如果document.cookie对象里面有cookie则查找是否有指定的cookie,如果有则返回指定的cookie值,如果没有则返回空字符串
if (c_start != -1) {
c_start = c_start + c_name.length + 1
var c_end = document.cookie.indexOf(";", c_start)
if (c_end == -1) c_end = document.cookie.length
return unescape(document.cookie.substring(c_start, c_end))
}
}
return ""
};
function onloadFunc() {
if (getCookie("language") == "zh-CN") {
document.getElementsByClassName("tipWrapEn")[0].style.display = "none";
} else {
document.getElementsByClassName("tipWrapZh")[0].style.display = "none";
}
};
function handleToHome() {
self.location = document.location.href.split("#/")[0]+"#/";
}
</script>
</body>
<style>
.wrapper {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
/*background: url("../../assets/img/notFind.png") no-repeat;*/
background-size: auto 100%;
background-position: center;
background-color: #FFFFFF;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
p {
width: 100%;
color: #1A1A1E;
font-size: 20px;
text-align: center;
}
.imgWrap {
width: 100%;
height: 450px;
display: flex;
justify-content: center;
}
img {
width: 600px;
object-fit: contain;
}
.tipWrap {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.buttonWrap {
border-radius: 100px;
display: flex;
justify-content: center;
align-items: center;
background: #5D78FF;
margin-top: 20px;
width: 130px;
height: 30px;
font-size: 16px;
color: #FFFFFF;
}
</style>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <!--优先使用 IE 最新版本和 Chrome-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0, user-scalable=0"> <!--为移动设备添加 viewport-->
<title>404</title>
</head>
<body onload="onloadFunc()">
<script>
(function (doc, win) {
var docEl = doc.documentElement,
resizeEvt = 'onorientationchange' in window ? 'onorientationchange' : 'resize',
recalc = function () {
var clientWidth = docEl.clientWidth;
if (!clientWidth) return;
if(clientWidth>=750){
docEl.style.fontSize = '100px';
}else{
docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
}
};
if (!doc.addEventListener) return;
win.addEventListener(resizeEvt, recalc, false);
doc.addEventListener('DOMContentLoaded', recalc, false);
})(document, window);
</script>
<div class="wrapper">
<div class="imgWrap">
<img src="./img/notFind.jpg" alt="">
</div>
<div class="tipWrap tipWrapZh">
<div>
<p>Sorry,您访问的页面开小差了,</p>
<p>您可以点击下面的按钮,返回首页。</p>
</div>
<div class="buttonWrap" onclick="handleToHome()">
返回首页
</div>
</div>
<div class="tipWrap tipWrapEn">
<p>Page error, click the button to return.</p>
<div class="buttonWrap" onclick="handleToHome()">
Back to home
</div>
</div>
</div>
<script>
//获取cookie
function getCookie(c_name) {
//判断document.cookie对象里面是否存有cookie
if (document.cookie.length > 0) {
var c_start = document.cookie.indexOf(c_name + "=")
//如果document.cookie对象里面有cookie则查找是否有指定的cookie,如果有则返回指定的cookie值,如果没有则返回空字符串
if (c_start != -1) {
c_start = c_start + c_name.length + 1
var c_end = document.cookie.indexOf(";", c_start)
if (c_end == -1) c_end = document.cookie.length
return unescape(document.cookie.substring(c_start, c_end))
}
}
return ""
};
function onloadFunc(){
if(getCookie("language") == "zh-CN"){
document.getElementsByClassName("tipWrapEn")[0].style.display = "none";
}else {
document.getElementsByClassName("tipWrapZh")[0].style.display = "none";
}
}
function handleToHome() {
self.location = document.location.href.split("#/")[0] + "#/";
}
</script>
</body>
<style>
.wrapper {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
/*background: url("../../assets/img/notFind.png") no-repeat;*/
background-size: auto 100%;
background-position: center;
background-color: #FFFFFF;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
align-content: space-evenly;
}
p {
width: 100%;
color: #1A1A1E;
font-size: .24rem;
text-align: center;
padding: 0 .2rem;
}
.imgWrap {
width: 100%;
height: 4.5rem;
display: flex;
justify-content: center;
}
img {
width: 100%;
object-fit: contain;
}
.tipWrap {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.buttonWrap {
border-radius: 1rem;
display: flex;
justify-content: center;
align-items: center;
background: #5D78FF;
margin-top: .3rem;
width: 3.5rem;
height: 1rem;
font-size: .32rem;
color: #FFFFFF;
}
</style>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>500</title>
</head>
<body onload="onloadFunc()">
<div class="wrapper">
<div class="imgWrap">
<img src="./img/notServer.jpg" alt="">
</div>
<div class="tipWrap tipWrapZh">
<div class="buttonWrap" onclick="handleToHome()">
返回首页
</div>
</div>
<div class="tipWrap tipWrapEn">
<div class="buttonWrap" onclick="handleToHome()">
Back to home
</div>
</div>
</div>
<script>
//获取cookie
function getCookie(c_name) {
//判断document.cookie对象里面是否存有cookie
if (document.cookie.length > 0) {
var c_start = document.cookie.indexOf(c_name + "=")
//如果document.cookie对象里面有cookie则查找是否有指定的cookie,如果有则返回指定的cookie值,如果没有则返回空字符串
if (c_start != -1) {
c_start = c_start + c_name.length + 1
var c_end = document.cookie.indexOf(";", c_start)
if (c_end == -1) c_end = document.cookie.length
return unescape(document.cookie.substring(c_start, c_end))
}
}
return ""
};
function onloadFunc() {
if (getCookie("language") == "zh-CN") {
document.getElementsByClassName("tipWrapEn")[0].style.display = "none";
} else {
document.getElementsByClassName("tipWrapZh")[0].style.display = "none";
}
};
function handleToHome() {
self.location = document.location.href.split("#/")[0] + "#/";
}
</script>
</body>
<style>
.wrapper {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
/*background: url("../../assets/img/notFind.png") no-repeat;*/
background-size: auto 100%;
background-position: center;
background-color: #FFFFFF;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
p {
width: 100%;
color: #1A1A1E;
font-size: 20px;
text-align: center;
}
.imgWrap {
width: 100%;
height: 450px;
display: flex;
justify-content: center;
}
img {
width: 600px;
object-fit: contain;
}
.tipWrap {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.buttonWrap {
border-radius: 100px;
display: flex;
justify-content: center;
align-items: center;
background: #5D78FF;
margin-top: 20px;
width: 130px;
height: 30px;
font-size: 16px;
color: #FFFFFF;
}
</style>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <!--优先使用 IE 最新版本和 Chrome-->
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0, user-scalable=0">
<!--为移动设备添加 viewport-->
<title>500</title>
</head>
<body onload="onloadFunc()">
<script>
(function (doc, win) {
var docEl = doc.documentElement,
resizeEvt = 'onorientationchange' in window ? 'onorientationchange' : 'resize',
recalc = function () {
var clientWidth = docEl.clientWidth;
if (!clientWidth) return;
if (clientWidth >= 750) {
docEl.style.fontSize = '100px';
} else {
docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
}
};
if (!doc.addEventListener) return;
win.addEventListener(resizeEvt, recalc, false);
doc.addEventListener('DOMContentLoaded', recalc, false);
})(document, window);
</script>
<div class="wrapper">
<div class="imgWrap">
<img src="./img/notServer.jpg" alt="">
</div>
<div class="tipWrap tipWrapZh">
<div class="buttonWrap" onclick="handleToHome()">
返回首页
</div>
</div>
<div class="tipWrap tipWrapEn">
<div class="buttonWrap" onclick="handleToHome()">
Back to home
</div>
</div>
</div>
<script>
//获取cookie
function getCookie(c_name) {
//判断document.cookie对象里面是否存有cookie
if (document.cookie.length > 0) {
var c_start = document.cookie.indexOf(c_name + "=")
//如果document.cookie对象里面有cookie则查找是否有指定的cookie,如果有则返回指定的cookie值,如果没有则返回空字符串
if (c_start != -1) {
c_start = c_start + c_name.length + 1
var c_end = document.cookie.indexOf(";", c_start)
if (c_end == -1) c_end = document.cookie.length
return unescape(document.cookie.substring(c_start, c_end))
}
}
return ""
};
function onloadFunc() {
if (getCookie("language") == "zh-CN") {
document.getElementsByClassName("tipWrapEn")[0].style.display = "none";
} else {
document.getElementsByClassName("tipWrapZh")[0].style.display = "none";
}
}
function handleToHome() {
self.location = document.location.href.split("#/")[0] + "#/";
}
</script>
</body>
<style>
.wrapper {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
/*background: url("../../assets/img/notFind.png") no-repeat;*/
background-size: auto 100%;
background-position: center;
background-color: #FFFFFF;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
align-content: space-evenly;
}
p {
width: 100%;
color: #1A1A1E;
font-size: .24rem;
text-align: center;
padding: 0 .2rem;
}
.imgWrap {
width: 100%;
height: 4.5rem;
display: flex;
justify-content: center;
}
img {
width: 100%;
object-fit: contain;
}
.tipWrap {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.buttonWrap {
border-radius: 1rem;
display: flex;
justify-content: center;
align-items: center;
background: #5D78FF;
margin-top: .3rem;
width: 3.5rem;
height: 1rem;
font-size: .32rem;
color: #FFFFFF;
}
</style>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment