Update index.html
Browse files- index.html +5 -22
index.html
CHANGED
|
@@ -555,7 +555,7 @@
|
|
| 555 |
img.style.width = '100%';
|
| 556 |
img.style.height = '100%';
|
| 557 |
img.style.objectFit = 'contain';
|
| 558 |
-
img.style.filter = 'drop-shadow(0 0
|
| 559 |
|
| 560 |
img.onload = function() {
|
| 561 |
console.log('RWR symbol image loaded successfully');
|
|
@@ -565,28 +565,11 @@
|
|
| 565 |
|
| 566 |
img.onerror = function() {
|
| 567 |
console.log('RWR symbol image failed to load, using fallback');
|
| 568 |
-
// ์ด๋ฏธ์ง ๋ก๋ ์คํจ์
|
| 569 |
rwrSymbol.innerHTML = `
|
| 570 |
-
<
|
| 571 |
-
<
|
| 572 |
-
|
| 573 |
-
<path d="M 0,-12 L -2,-9 L -2,-3 L -6,0 L -6,3 L -2,3 L -2,9 L -0.5,12 L 0,13
|
| 574 |
-
L 0.5,12 L 2,9 L 2,3 L 6,3 L 6,0 L 2,-3 L 2,-9 L 0,-12 Z"
|
| 575 |
-
fill="#00ff00"
|
| 576 |
-
stroke="#00ff00"
|
| 577 |
-
stroke-width="0.5"
|
| 578 |
-
filter="url(#glow)"/>
|
| 579 |
-
</g>
|
| 580 |
-
<defs>
|
| 581 |
-
<filter id="glow">
|
| 582 |
-
<feGaussianBlur stdDeviation="1.5" result="coloredBlur"/>
|
| 583 |
-
<feMerge>
|
| 584 |
-
<feMergeNode in="coloredBlur"/>
|
| 585 |
-
<feMergeNode in="SourceGraphic"/>
|
| 586 |
-
</feMerge>
|
| 587 |
-
</filter>
|
| 588 |
-
</defs>
|
| 589 |
-
</svg>
|
| 590 |
`;
|
| 591 |
};
|
| 592 |
}
|
|
|
|
| 555 |
img.style.width = '100%';
|
| 556 |
img.style.height = '100%';
|
| 557 |
img.style.objectFit = 'contain';
|
| 558 |
+
img.style.filter = 'drop-shadow(0 0 2px #00ff00)'; // ์ด๋ก์์ผ๋ก ๋ณ๊ฒฝ
|
| 559 |
|
| 560 |
img.onload = function() {
|
| 561 |
console.log('RWR symbol image loaded successfully');
|
|
|
|
| 565 |
|
| 566 |
img.onerror = function() {
|
| 567 |
console.log('RWR symbol image failed to load, using fallback');
|
| 568 |
+
// ์ด๋ฏธ์ง ๋ก๋ ์คํจ์ ์์ ์ด๋ก์ ์ ์ผ๋ก ๋์ฒด
|
| 569 |
rwrSymbol.innerHTML = `
|
| 570 |
+
<div style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;">
|
| 571 |
+
<div style="width: 8px; height: 8px; background: #00ff00; border-radius: 50%; box-shadow: 0 0 4px #00ff00;"></div>
|
| 572 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 573 |
`;
|
| 574 |
};
|
| 575 |
}
|