-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
130 lines (108 loc) · 2.65 KB
/
about.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex">
<title>Kawiesh Debisarun</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@font-face{
font-family: 'Black Chancery';
font-style: normal;
font-weight: normal;
src: url('/resources/BlackChancery.woff') format('woff');
}
body{
height: 100vh; width: 100vw;
background: url(/resources/nightsky.png);
background-size: cover;
}
div{
color: white;
text-shadow: 0 0 2px yellow;
font: 30px "Black Chancery", "Courier New";
font-size: 25px;
white-space: pre;
text-align:center;
z-index:1;
max-width: 98%;
}
svg{
position: fixed;
left:50%; top:50%;
transform: translate(-50%,-50%);
stroke-width: 1;
stroke: red;
fill: white;
transition: 2.5s linear;
width:0;
height:0;
opacity:0.1;
z-index:0;
}
section{
background: url("/resources/nightsky.png");
background-size: cover;
position: absolute;
left:0%; top:0%;
right:0%; bottom:0%;
z-index:-1;
transition: 5s linear;
opacity:0;
}
.blink{
animation: blink 3s linear infinite alternate;
}
@keyframes blink{
0%{color: white}
33%{color: blue}
66%{color: pink}
100%{color: limegreen}
}
</style>
</head>
<body>
<!--
<svg viewBox="0 0 32 32">
<path d="M23.6 2c-3.363 0-6.258 2.736-7.599
5.594-1.342-2.858-4.237-5.594-7.601-5.594-4.637
0-8.4 3.764-8.4 8.401 0 9.433 9.516 11.906
16.001 21.232 6.13-9.268 15.999-12.1
15.999-21.232 0-4.637-3.763-8.401-8.4-8.401z">
</path>
</svg>-->
<div></div>
<section>
Hello. My name is Kawiesh Debisarun and I do not know what my purpose in this world is. Thank you for letting me vent. Bye.
</section>
<blockquote class="twitter-tweet" data-theme="dark"><p lang="en" dir="ltr">Agreed! <a href="http://t.co/IYieVSZZUO">pic.twitter.com/IYieVSZZUO</a></p>— ☆Kawieshッ (@Kawiesh) <a href="https://twitter.com/Kawiesh/status/438841800678469632?ref_src=twsrc%5Etfw">February 27, 2014</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<script>
//let svg= document.querySelector("svg");
let section= document.querySelector("section");
let a= `Hello. I am Kawiesh....
Unfortunately I cannot reveal
more about myself. That's because
even I don't know what or why I am.
Anyway, I don't know what I should
write on this about page. Bye!`;
let b= document.querySelector("div");
b.innerHTML="";
let i=0;
function xox(){
if(i==a.length){
//svg.style.stroke= "blue";
//svg.style.opacity= 1;
//section.style.opacity= 1;
//svg.style.width= 2.5*(b.offsetWidth);
//svg.style.height= 2.5*(b.offsetHeight);
b.classList.add("blink");
}
if(i<a.length){
b.innerHTML+= a[i];
i++;
setTimeout(xox,150);
}
}
xox();
</script>
</body>
</html>