-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (81 loc) · 2.5 KB
/
index.html
File metadata and controls
98 lines (81 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>囲まれた数字記号</title>
<style>
body{
text-align: center;
}
textarea{
resize: none;
}
#root{
display: flex;
justify-content: space-around;
}
</style>
</head>
<body>
<div>
<h1>囲まれた数字記号</h1>
<p>
個人的に使うことが増えてきたのでメモ代わりに
</p>
</div>
<div id="root">
<div>
<span>角括弧</span>
<br>
<textarea id="squared_output" readonly cols="5" rows="20"></textarea><span></span>
</div>
<div>
<span>丸括弧</span>
<br>
<textarea id="parenthesized_output" readonly cols="5" rows="20"></textarea>
</div>
<div>
<span>丸数字</span>
<br>
<textarea id="circled_output" readonly cols="5" rows="20"></textarea>
</div>
</div>
<script>
function squared_number(){
let output_str=""
for(let i=1;i<=20;i++) {
output_str=output_str+"["+i+"]"
if(i !==20){
output_str=output_str+"\n"
}
}
return output_str
}
function parenthesized_number(){
let output_str=""
for(let i=1;i<=20;i++){
output_str=output_str+"("+i+")"
if(i !== 20) {
output_str=output_str+"\n"
}
}
return output_str
}
function circle_number(){
let output_str=""
let circled_array=["①","②","③","④","⑤","⑥","⑦","⑧","⑨","⑩","⑪","⑫","⑬","⑭","⑮","⑯","⑰","⑱","⑲","⑳"]
for(let i=0;i<circled_array.length;i++){
output_str=output_str+circled_array[i]
if(i !== (circled_array.length-1)) {
output_str=output_str+"\n"
}
}
return output_str
}
document.getElementById("squared_output").textContent=squared_number()
document.getElementById("parenthesized_output").textContent=parenthesized_number()
document.getElementById("circled_output").textContent=circle_number()
</script>
</body>
</html>