-
Notifications
You must be signed in to change notification settings - Fork 2
/
tools.html
108 lines (101 loc) · 3.09 KB
/
tools.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Lato|Alegreya" rel="stylesheet">
<style>
body {
text-align: center;
font-family: 'Lato', sans-serif
}
ol {
padding: 0;
margin: 0 aut0;
width: 100%;
}
li {
display: block;
width: 100%;
max-width: 768px;
text-align: center;
margin: 12px auto;
transform: persective(1px) translateZ(0);
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1.5em;
cursor: pointer;
color: #666;
}
li > span {
display: block;
font-size:0.5em;
}
li > span::before {
content: "( "
}
li > span::after {
content: " )"
}
li:hover, li:active, li:focus {
color: #333;
border-color: #333;
-webkit-animation-name: hvr-bob-float, hvr-bob;
animation-name: hvr-bob-float, hvr-bob;
-webkit-animation-duration: .3s, 1.5s;
animation-duration: .3s, 1.5s;
-webkit-animation-delay: 0s, .3s;
animation-delay: 0s, .3s;
-webkit-animation-timing-function: ease-out, ease-in-out;
animation-timing-function: ease-out, ease-in-out;
-webkit-animation-iteration-count: 1, infinite;
animation-iteration-count: 1, infinite;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-direction: normal, alternate;
animation-direction: normal, alternate;
}
@keyframes hvr-bob-float {
100% {
-webkit-transform: translateY(-8px);
transform: translateY(-8px);
}
}
@keyframes hvr-bob {
0% {
-webkit-transform: translateY(-8px);
transform: translateY(-8px);
}
50% {
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
}
100% {
-webkit-transform: translateY(-8px);
transform: translateY(-8px);
}
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<header>
<img src="static/home.png" alt="home" style="width:30px;float: left;margin-right:0.5em;">
<a href="/">
<h2 style="color:#333; font-family: 'Alegreya', serif;text-align:left;">JSWH.ME</h2>
</a>
</header>
<h1>J-Service</h1>
<ol>
<a href="http://s.jswh.me">
<li> Short Url Service <span>短连接服务(暂时挂了)</span></li>
</a>
<a href="http://editor.jswh.me">
<li> Markdown Editor <span>markdown 编辑器</span></li>
</a>
</ol>
</body>
</html>