-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (77 loc) · 1.59 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>mtscrb</title>
<style>
body {
background-color: #1e2a36;
}
@font-face {
font-family: bloxFont;
src: url(Blox2.ttf);
}
#container {
font-family: bloxFont;
}
@keyframes colorchange {
0% {
color: #f72585;
}
10% {
color: #b5179e;
}
20% {
color: #7209b7;
}
30% {
color: #560bad;
}
40% {
color: #480ca8;
}
50% {
color: #3a0ca3;
}
60% {
color: #3f37c9;
}
70% {
color: #4361ee;
}
80% {
color: #4895ef;
}
90% {
color: #4cc9f0;
}
100% {
color: #8ae0fb;
}
}
#mtscrb {
font-size: 150px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: colorchange 10s infinite alternate;
letter-spacing: 20px;
}
</style>
</head>
<body>
<div id="container"></div>
<script crossorigin src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>
<script type="text/javascript" language="javascript" src="emojis.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script type="text/babel">
const Mtscrb = () => <span id="mtscrb">mtscrb</span>
ReactDOM.render(
<Mtscrb />,
document.getElementById('container')
);
</script>
</body>
</html>