-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
214 lines (203 loc) · 7.64 KB
/
script.js
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
async function make(){
const font = await opentype.load('https://parkminwoo.com/font/Hesiod-Regular.otf');
const glyphsData = font.glyphs.glyphs
console.log(glyphsData);
let glyphList = Object.entries(glyphsData).sort((a,b)=>{b[0].localeCompare(a[0])})
glyphList= glyphList.reverse();
glyphList.pop();
glyphList.reverse();
console.log(glyphList.length)
for(char of glyphList){
writeOnHTML(char)
//console.log(char)
//console.log(char[1].name)
//console.log(char[1].unicode)
}
document.querySelector('#totalGlyphs').textContent = `All Characters (${glyphList.length})`
}
function writeOnHTML(char){
// console.log(charTxt)
const charDiv = document.createElement('div');
charDiv.setAttribute('class','charDiv');
const charName = document.createElement('div');
charName.setAttribute('class','charname');
document.querySelector('#glyphs').appendChild(charDiv);
//console.log(char)
const underbar = /_*/gm;
const afterDot = /\.[\d|\D]*/gm;
let charTxt = char[1].unicode;
if(charTxt === undefined){
charTxt = char[1].name.replace(underbar,'')
charTxt = charTxt.replace(afterDot,'')
console.log(char[1])
switch (charTxt) {
case 'Kcommaaccent':
charTxt = 'Ķ';
break;
case 'Rcommaaccent':
charTxt = 'Ŗ';
break;
case 'Racute':
charTxt = 'Ŕ'
break;
case 'Rcaron':
charTxt = 'Ř'
break;
case 'Rcommaaccent':
charTxt = 'Ŗ'
break;
case 'idotaccent':
charTxt = 'i'
break;
default:
break;
}
charDiv.style.fontFeatureSettings = `'liga', 'dlig', 'salt'`
}else{
charTxt = String.fromCharCode(char[1].unicode)
}
charDiv.textContent = charTxt;
charName.textContent = char[1].name.replace(afterDot,'');
charDiv.appendChild(charName);
charDiv.addEventListener('click',(e)=>{
e.stopPropagation();
const txt = e.target.firstChild.textContent;
const nameTxt = e.target.lastChild.textContent;
const modal = document.querySelector('.modal');
const char = document.querySelector('.char');
const name = document.querySelector('.name');
char.textContent = txt;
name.textContent = nameTxt;
modal.style.display = 'flex';
console.log(e.target.style.fontFeatureSettings)
if(e.target.style.fontFeatureSettings === `"liga", "dlig", "salt"`){
char.style.fontFeatureSettings = `"liga", "dlig", "salt"`
}
})
}
document.addEventListener('click',(e)=>{
console.log(e.target)
const modal = document.querySelector('.modal');
const char = document.querySelector('.char');
const name = document.querySelector('.name');
if(e.target === modal || e.target === char || e.target === name){
console.log('no');
}else{
modal.style.display = 'none';
}
})
make();
const szChange = function(i){
const target = document.querySelectorAll('textarea')[i];
let val = document.querySelectorAll('[data-control=size]')[i].value;
target.style.fontSize = val+'px';
document.querySelectorAll('.curSz')[i].innerHTML = val + 'px';
target.style.height = "0px";
target.style.height = target.scrollHeight+'px';
}
let dligChkd = [false, false, false];
const dlig = function(i){
const txt = document.querySelectorAll('textarea')[i];
let otf = txt.style.fontFeatureSettings;
const dligReg = /"dlig"/
const dligRegF = /"dlig",/
const dligRegR = /, "dlig"/
if (!dligChkd[i]){
if(!otf){
txt.style.fontFeatureSettings = `"dlig"`;
}else if(!dligRegR.exec(otf)){
console.log(txt.style.fontFeatureSettings)
txt.style.fontFeatureSettings = txt.style.fontFeatureSettings + `, "dlig"`;
}
dligChkd[i] = true;
}else{
console.log(otf)
txt.style.fontFeatureSettings = otf.replace(dligRegF,'').replace(dligRegR,'').replace(dligReg,'');
dligChkd[i] = false;
}
}
let saltChkd = [false, false, false];
const salt = function(i){
const txt = document.querySelectorAll('textarea')[i];
let otf = txt.style.fontFeatureSettings;
const saltReg = /"salt"/
const saltRegF = /"salt",/
const saltRegR = /, "salt"/
if (!saltChkd[i]){
if(!otf){
txt.style.fontFeatureSettings = `"salt"`;
}else if(!saltRegR.exec(otf)){
console.log(txt.style.fontFeatureSettings)
txt.style.fontFeatureSettings = txt.style.fontFeatureSettings + `, "salt"`;
}
saltChkd[i] = true;
}else{
txt.style.fontFeatureSettings = otf.replace(saltRegF,'').replace(saltRegR,'').replace(saltReg,'');
saltChkd[i] = false;
}
}
//bg color///
let colorIndex = 0;
const colorShft = function(){
colorIndex++;
console.log(colorIndex)
if(colorIndex === 0){
document.documentElement.style.setProperty('--color','255, 255, 255');
document.documentElement.style.setProperty('--bgColor','0, 0, 0');
}else if(colorIndex===1){
document.documentElement.style.setProperty('--color','0, 0, 0');
document.documentElement.style.setProperty('--bgColor','255, 255, 255');
}else {
function getRandomBg(){
let randomR = Math.floor(Math.random()*122);
let randomG = Math.floor(Math.random()*122);
let randomB = Math.floor(Math.random()*122)
console.log( `${randomR},${randomB},${randomG}`)
return `${randomR},${randomB},${randomG}`
}
function getRandomCol(){
let randomR = Math.floor(Math.random()*122)+123;
let randomG = Math.floor(Math.random()*122)+123;
let randomB = Math.floor(Math.random()*122)+123;
console.log( `${randomR},${randomB},${randomG}`)
return `${randomR},${randomB},${randomG}`
}
document.documentElement.style.setProperty('--color', getRandomCol());
document.documentElement.style.setProperty('--bgColor',getRandomBg());
if (colorIndex === 6) {colorIndex = -1}
}
}
window.onload = ()=>{
console.log(window.innerWidth)
if(window.innerWidth <= 576){
document.querySelectorAll('textarea')[0].style.fontSize = "60px"
document.querySelectorAll('[data-control=size]')[0].value = "60"
document.querySelectorAll('.curSz')[0].textContent = "60px"
document.querySelectorAll('textarea')[1].style.fontSize = "40px"
document.querySelectorAll('[data-control=size]')[1].value = "40"
document.querySelectorAll('.curSz')[1].textContent = "40px"
document.querySelectorAll('textarea')[2].style.fontSize = "20px"
document.querySelectorAll('[data-control=size]')[2].value = "20"
document.querySelectorAll('.curSz')[2].textContent = "20px"
}
document.querySelectorAll('textarea').forEach((el)=>{
console.log(el)
el.style.height = '0px';
console.log(el.scrollHeight)
console.log(el.style.height)
let h = el.scrollHeight;
console.log(h)
el.style.height = (el.scrollHeight)+'px';
})
document.querySelector('.modal').addEventListener('click',(e)=>{
document.querySelector('.modal').style.display = 'none';
})
}
function auto_grow(element) {
let h = element.scrollHeight;
element.style.height = "0px";
element.style.height = (element.scrollHeight)+"px";
}
document.querySelector('#toMain').addEventListener('click',(el)=>{
window.scrollTo(0,0);
})