-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlnmp.html
87 lines (82 loc) · 1.64 KB
/
lnmp.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
<!DOCTYPE >
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="images/design/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/model.min.css" />
<style>
#enter {
text-align: center;
margin: 30px;
overflow: hidden;
}
#enter img {
margin: auto;
min-height: 100%;
width: 50%;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
max-width: 500px;
}
#enter img:hover {
opacity: 0.7;
}
@media only screen and (max-width:726px)
{
#enter img{
width: 75%;
}
a{
font-size: 24px;
}
}
@media only screen and (max-width:500px)
{
#enter img{
width: 100%;
}
a{
font-size: 32px;
}
}
p{
margin: 10px;
}
a{
color: darkgrey;
font-size: 14px;
font-weight: bold;
}
a:link,a:active,a:visited,a:hover{
color: darkgrey;
text-decoration: none;
}
a:hover{
cursor: pointer;
}
.bg_content {
position: fixed;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
}
</style>
<title>世界大门の入口</title>
</head>
<body>
<!--页面动画-->
<div class="bg_content">
<canvas id="canvas"></canvas>
</div>
<script src="js/canvas-nest.min.js" type="text/javascript" charset="utf-8"></script>
<div id="enter" class="t-box container" style="animation: 2s top-transparent ease;">
<a href="https://blog.fujishiro.cn"><img src="images/enter.jpg" /></a>
</div>
<p align="center">
<a href="http://www.miitbeian.gov.cn">粤ICP备18106231号</a>
</p>
</body>
</html>