-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
93 lines (76 loc) · 3.21 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!--
Author: W3layouts
Author URL: http://w3layouts.com
-->
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Fog error Responsive Widget Template :: W3layouts</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="keywords"
content="Fog error web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template, Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<!-- //Meta tag Keywords -->
<!-- //google fonts -->
<!--/Style-CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!--//Style-CSS -->
<!--/fontAwesome-CSS -->
<link rel="stylesheet" href="css/fontAwesome.css" type="text/css" media="all" />
<!--/fontAwesome-CSS -->
</head>
<body>
<div class="w3l-error-block">
<div class="page">
<div class="content">
<div class="logo">
<a class="brand-logo" href="index.html">忱铭随笔</a>
<!-- 如果徽标是图像,请启用此功能
<a class="brand-logo" href="#index.html">
<img src="image-path" alt="Your logo" title="Your logo" style="height:35px;" />
</a>
-->
</div>
<div class="w3l-error-grid">
<h1>404</h1>
<h2>找不到这个页面</h2>
<p>这个页面要不然是没写要不然就是不小心删了</p>
<a href="index.html" class="home">返回首页</a>
</div>
<div class="copy-right text-center">
<p>© 2024 <a href="https://chenming.site/" target="_blank">忱铭随笔</a> . | 本页面源码来自
<a href="http://w3layouts.com/" target="_blank">W3layouts</a></p>
</div>
</div>
<img src="404/images/bg.jpg" class="img-responsive" alt="error image" />
</div>
<script src="404/js/jquery-3.3.1.min.js"></script>
<script>
var lFollowX = 0,
lFollowY = 0,
x = 0,
y = 0,
friction = 1 / 30;
function animate() {
x += (lFollowX - x) * friction;
y += (lFollowY - y) * friction;
translate = 'translate(' + x + 'px, ' + y + 'px) scale(1.1)';
$('img').css({
'-webit-transform': translate,
'-moz-transform': translate,
'transform': translate
});
window.requestAnimationFrame(animate);
}
$(window).on('mousemove click', function (e) {
var lMouseX = Math.max(-100, Math.min(100, $(window).width() / 2 - e.clientX));
var lMouseY = Math.max(-100, Math.min(100, $(window).height() / 2 - e.clientY));
lFollowX = (20 * lMouseX) / 100; // 100 : 12 = lMouxeX : lFollow
lFollowY = (10 * lMouseY) / 100;
});
animate();
</script>
</div>
</body>
</html>