diff --git a/ede.js b/ede.js
index 852470b..eed3853 100644
--- a/ede.js
+++ b/ede.js
@@ -340,38 +340,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -382,33 +350,6 @@
`;
document.body.appendChild(modal);
-
- document.getElementById('danmakuColor').addEventListener('change', (e) => {
- const colorStr = e.target.value;
- let c = 0;
- if (colorStr.length == 4) {
- c = parseInt(colorStr[1] + colorStr[1] + colorStr[2] + colorStr[2] + colorStr[3] + colorStr[3], 16) || 0;
- } else {
- c = parseInt(colorStr.slice(1), 16) || 0;
- }
- c = Math.min(Math.max(c, 0), 0xffffff);
- const color = '#' + c.toString(16).padStart(6, '0').toUpperCase();
- document.getElementById('danmakuColor').value = color;
- document.getElementById('danmakuColorDisplay').style.backgroundColor = color;
- });
- document.getElementById('danmakuColor').addEventListener('input', (e) => {
- document.getElementById('danmakuColorDisplay').style.backgroundColor = e.target.value;
- });
- document.getElementById('danmakuColor').addEventListener('keydown', (e) => e.stopPropagation());
-
- document.getElementById('danmakuColorPicker').addEventListener('click', (e) => {
- const color = e.target.getAttribute('data-value');
- if (color) {
- document.getElementById('danmakuColor').value = color;
- document.getElementById('danmakuColorDisplay').style.backgroundColor = color;
- }
- });
-
document.getElementById('sendDanmakuForm').onsubmit = (e) => {
e.preventDefault();
const danmakuText = document.getElementById('danmakuText').value;
@@ -421,8 +362,7 @@
const _media = document.querySelector(mediaQueryStr);
const currentTime = _media.currentTime;
const mode = parseInt(document.querySelector('input[name="danmakuMode"]:checked').value);
- const color = parseInt(document.getElementById('danmakuColor').value.slice(1), 16) || 0xffffff;
- sendDanmaku(danmakuText, currentTime, mode, color);
+ sendDanmaku(danmakuText, currentTime, mode);
// 清空输入框的值
document.getElementById('danmakuText').value = '';
modal.style.display = 'none';