2 Star 0 Fork 0

花小蕊/YIANSTORAGE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 3.53 KB
一键复制 编辑 原始数据 按行查看 历史
cr 提交于 2021-01-26 15:40 . update
<!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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/flower_pistil/yianstorage.git
git@gitee.com:flower_pistil/yianstorage.git
flower_pistil
yianstorage
YIANSTORAGE
master

搜索帮助