From 5d2b372c14e4abf30fcc3c578be269317fe3d8d3 Mon Sep 17 00:00:00 2001 From: Jaybe Date: Thu, 3 Jul 2025 07:00:05 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B3=BC=EB=A7=81=EA=B3=B5=20=EC=86=8D?= =?UTF-8?q?=EB=8F=84=20=EC=B8=A1=EC=A0=95=EA=B8=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/public/bowlspeed/index.html | 553 +++++++++++++++++++++++++++ frontend/src/router/index.js | 8 + 2 files changed, 561 insertions(+) create mode 100644 frontend/public/bowlspeed/index.html diff --git a/frontend/public/bowlspeed/index.html b/frontend/public/bowlspeed/index.html new file mode 100644 index 0000000..3aaa0c1 --- /dev/null +++ b/frontend/public/bowlspeed/index.html @@ -0,0 +1,553 @@ + + + + + + 볼링공 속도 계산기 + + + +
+

볼링공 속도 계산기

+ +
+

이 계산기는 볼링공이 파울라인에서 헤드핀까지 이동하는 속도를 계산합니다.

+

시간 입력 또는 원하는 속도 입력으로 양방향 계산이 가능합니다. 볼링 레인의 기본 거리는 60피트(18.288미터)입니다.

+
+ +
+

스톱워치

+

볼링공이 파울라인을 지날 때 '시작'을 누르고, 헤드핀에 도달할 때 '정지'를 누르세요.

+
00:00.000
+
+ + +
+
+ +
+
+ + 초 +
+ +
+
+ + 미터 +
+
+ + 피트 +
+
+ +
+ + +
+ +
+
+ 시속 (킬로미터): + + KPH +
+
+ 시속 (마일): + + MPH +
+
+ 초속 (피트): + + FPS +
+
+ 초속 (미터): + + MPS +
+
+
+ +
+

2025 볼링공 속도 계산기

+
+
+ + + + \ No newline at end of file diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js index e444ff2..7f79967 100644 --- a/frontend/src/router/index.js +++ b/frontend/src/router/index.js @@ -36,6 +36,14 @@ const routes = [ path: '/', redirect: '/login' }, + { + path: '/bowlspeed', + name: 'BowlingSpeed', + beforeEnter() { + window.location.href = '/bowlspeed/index.html'; + }, + meta: { title: '볼링공 속도 계산기', requiresAuth: false } + }, { path: '/public/:publicHash', name: 'EventPublicPage',