-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfo.php
More file actions
39 lines (37 loc) · 829 Bytes
/
Copy pathinfo.php
File metadata and controls
39 lines (37 loc) · 829 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>儿子,你想找什么?</title>
<style>
.scroll-text {
width: 200px;
height: 50px;
overflow: hidden;
position: relative;
border: 1px solid #000;
}
.scroll-text p {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
line-height: 50px;
text-align: center;
animation: scroll 10s linear infinite;
}
@keyframes scroll {
0% {
top: 0;
}
100% {
top: -100%;
}
}
</style>
</head>
<body>
<div class="scroll-text">
<p>Son, what are you looking for?</p>
</div>
</body>
</html>