加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 2.38 KB
一键复制 编辑 原始数据 按行查看 历史
ashunun 提交于 2021-12-16 00:24 . update index.html.
<!--
大佬js里面的东西就不要动了,这样就可以了 js是移植别人的缺一不可
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>您访问的网页出错啦!</title>
<meta name="description" content="分享日常,404" />
<meta name="keywords" content="分享日常,404" />
<meta name="author" content="Codrops" />
<link href="15.0904011.ico" mce_href="favicon.ico" rel="shortcut icon" type="15.0904011.ico" />
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.beattext.js"></script>
<script type="text/javascript" src="easying.js"></script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="button.css" />
<link rel="stylesheet" href="reset.css" />
<script type="text/javascript">
var system ={};
var p = navigator.platform;
system.win = p.indexOf("Win") == 0;
system.mac = p.indexOf("Mac") == 0;
system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
if(system.win||system.mac||system.xll){//如果是电脑跳转到
window.location.href="#";
}else{ //如果是手机,跳转到
window.location.href="m/index.html";
}
</script>
<script type="text/javascript">
$(document).ready(function() {
$('p#roloadText').beatText({isAuth:true,beatHeight:"1em",isRotate:false,upTime:100,downTime:100});
});
</script>
</head>
<body>
<div class="logo" id="a" onclick="a();" title="点击我有惊喜!">
<img src="20171216094159_QaLXP.jpeg">
</div>
<br /><br />
<div class="container">
<p id="roloadText">404!网页君找不到这个网页了哦...</p>
</div>
<a href="https://geda-999.github.io/shun/">
<div class="box bg-1">
<button class="button button--antiman button--round-l button--text-medium" onclick="window.open('http://')"><span>返回首页</span></button>
</div>
</a>
</div>
<div class="body_buttom">
<audio autoplay loop id="music">
<source src="music.mp3" type="audio/mpeg">
</audio>
<script>
function a(){
var audio = document.getElementById('music');
if(audio.paused){
audio.play();//audio.play();// 播放
}
else{
audio.pause();// 暂停
}
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化