-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (162 loc) · 5.66 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!doctype html>
<html lang="ja">
<head prefix="og: http://ogp.me/ns#">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="keto" />
<title>keto’s profile site</title>
<meta name="robots" content="index, follow" />
<meta
name="google-site-verification"
content="Ar-U6JNbcoH49_c-X5R7LR2N69nug_r32dcZOyqYM_s"
/>
<meta name="keywords" content="keto21,keto,KETO21,KETO,keto21f5si" />
<meta
name="description"
content="ketoの趣味や好きなこと、得意なことを紹介するプロフィールサイト。keto21"
/>
<meta property="og:url" content="https://keto21.f5.si/" />
<meta property="og:title" content="KETO21" />
<meta property="og:description" content="keto21’s profile" />
<meta property="og:site_name" content="keto21" />
<meta property="og:image" content="https://keto21.f5.si/ATI.png" />
<meta name="author" content="keto21" />
<link rel="icon" sizes="any" type="image/svg+xml" href="./keto.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="./ATI.png" />
<link rel="canonical" href="https://keto21.f5.si/" />
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./style.css" />
</head>
<body id="top">
<header>
<h1>://keto21.f5.si/</h1>
</header>
<main>
<img src="./keto.svg" alt="logo" id="logo" />
<h1>Welcome to my site</h1>
<p>keto’s Profile Page.</p>
<div class="content">
<h2>about me</h2>
<p>
name: keto<br />hobby: web design, Scratch<br />blood type: A<br />dream:
programmer
</p>
<br />
<p>
Scratchでゲームを作ったり、HTML,
CSSの勉強をしたりしています。今後はC#とBlenderとUnityの勉強もしようと思います。
</p>
</div>
<hr />
<div class="content">
<h2>Skill</h2>
<div id="bar"></div>
<noscript>
<p>JavaScript must be enable.</p>
</noscript>
<p>
HTML / CSS / JavaScript
のスキルを活かして、ここを作成しました。↓<br />
<a href="https://github.com/KETO-21/keto21-f5-si/"
>GitHubリポジトリ</a
>
</p>
<p>
<a href="https://scratch.mit.edu/users/keto21/">Scratch</a
>では主にアクションゲームを制作しており、簡単なゲームを作るのに十分な知識があります。<br />
最近は、3Dの基礎を理解するために、Scratchのペン機能を活用して学習しています。<br />
Scratchは3Dに対応していないため、独自にレンダリング用のプログラムを作成しています。<br />
次のステップとして、Unityを使って本格的なゲーム制作に挑戦したいと考えています。
</p>
</div>
<hr />
<div class="content">
<h2>URLs</h2>
<ul>
<li><a href="https://github.com/keto21f5si">GitHub</a></li>
<li><a href="https://blog.keto21.f5.si/">My Blog</a></li>
<li><a href="https://scratch.mit.edu/users/keto21/">Scratch</a></li>
<li>
<a href="#top"><strong>Top Page</strong></a>
</li>
<li><a href="https://chat.keto21.f5.si/">Chatroom(不安定)</a></li>
<li><a href="https://ch.keto21.f5.si/">Chatroom(新しい)</a></li>
<li>
<a
href="https://www.roblox.com/users/5174944355/profile?friendshipSourceType=PlayerSearch"
>Request from Tawashi</a
>
</li>
<li>
<a href="line://msg/text/https://keto21.f5.si/">LINEで共有</a>
</li>
<li>
<a
href="https://line.me/ti/g2/bbl8kL7FDSJs9OUijPpjCkxEqpQaExi8RDwQpg?utm_source=invitation&utm_medium=link_copy&utm_campaign=default"
>Request</a
>
</li>
</ul>
</div>
<button type="button" id="copy">Copy the URL</button>
</main>
<footer>
<small>
Created by keto.<br />
Hosted by Cloudflare pages.<br />
All rights reserved.<br />
© 2024 keto
</small>
</footer>
<script>
const copy = document.querySelector("#copy");
const main = document.querySelector("main");
const bar = document.querySelector("#bar");
const skill = [
{
name: "HTML",
lv: 3
},
{
name: "CSS",
lv: 2.7
},
{
name: "JavaScript",
lv: 3.7
},
{
name: "Scratch",
lv: 3
}
];
copy.addEventListener("click", () => {
navigator.clipboard.writeText("https://keto21.f5.si/");
const p = document.createElement("p");
p.innerText = "Copied!";
main.appendChild(p);
setTimeout(() => {
p.remove();
}, 1000);
});
skill.forEach((data) => {
const p = document.createElement("p");
const div = document.createElement("div");
p.textContent = `${data.name} : Lv.${data.lv}`;
div.setAttribute("data-lv", data.lv);
div.style.setProperty("--lv", data.lv);
bar.appendChild(p);
bar.appendChild(div);
});
</script>
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker.register("./sw.js").then(function(registration) {
}, function(err) {
});
});
}
</script>
</body>
</html>