代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--用于设定网页的到期时间。一旦网页过期,必须到服务器上重新传输。 -->
<meta http-equiv="Expires" content="-1">
<!--用于设定禁止浏览器从本地机的缓存中调阅页面内容,设定后一旦离开网页就无法从Cache中再调出 -->
<meta http-equiv="Pragma" content="no-cache">
<!--清除缓存,每次访问要重新下载-->
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">
<!--缩放比例-->
<meta name="viewport" content="width=width-device,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1">
<title>YIANSTORAGE</title>
<link rel="stylesheet" href="static/css/layer.css">
<!-- <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" href="https://unpkg.com/cube-ui/lib/cube.min.css"> -->
<script src="static/js/layer.js"></script>
<script src="static/js/exif.js"></script>
<script src="static/js/cropper.min.js"></script>
<script type="text/javascript">
(function (doc, win) {
var docEl = doc.documentElement;
resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize';
recalc = function () {
var clientWidth = docEl.clientWidth;
if (!clientWidth) return;
docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
};
if (!doc.addEventListener) return;
win.addEventListener(resizeEvt, recalc, false);
doc.addEventListener('DOMContentLoaded', recalc, false);
}(document, window));
</script>
<script src="static/js/mui.min.js"></script>
<script type="text/javascript">
localStorage.setItem('version','1.0');
mui.init({gestureConfig:{swipe: false}});
mui.plusReady(function(){
plus.runtime.getProperty(plus.runtime.appid,function(inf){
var version = inf.version;
plus.storage.setItem("version",version);
localStorage.setItem("version",version);
localStorage.setItem("updateApp",1);
});
});
</script>
</head>
<body>
<div id="app"></div>
<script>
function getCookie(key) { //获取指定名称的cookie的值
var data = JSON.parse(localStorage.getItem(key));
if (data !== null) {
if (data.expirse != null && data.expirse < new Date().getTime()) localStorage.removeItem(key);
else return data.value;
}
return null;
}
function setCookie(key, value, ttl_ms) { //设置cookie
var data = {
value: value,
expirse: new Date(ttl_ms).getTime()
};
localStorage.setItem(key, JSON.stringify(data));
}
function getsec(str) {
var str1 = str.substring(1, str.length) * 1;
var str2 = str.substring(0, 1);
if (str2 == "s") {
return str1 * 1000;
} else if (str2 == "h") {
return str1 * 60 * 60 * 1000;
} else if (str2 == "d") {
return str1 * 24 * 60 * 60 * 1000;
}
}
function delCookie(name) { //删除指定名称的cookie的值
localStorage.removeItem(name)
}
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。