forked from Reselim/beat-saber-overlay
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Overlay</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" href="rtl2.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<div id="overlay" class="hidden"> | ||
<div id="performance"> | ||
<div class="performance-group"> | ||
<span class="subtext" id="percentage">0%</span> | ||
<span class="text" id="rank">E</span> | ||
</div> | ||
|
||
<div class="performance-group"> | ||
<span class="subtext" id="combo_text">Combo</span> | ||
<span class="text" id="combo">0</span> | ||
</div> | ||
|
||
<span id="score">0</span> | ||
</div> | ||
|
||
<div id="beatmap"> | ||
<div id="meta"> | ||
<div id="text"> | ||
<div id="titles"> | ||
<span id="subtitle">Subtitle</span> | ||
<span id="title">Title</span> | ||
</div> | ||
|
||
<span id="artist">Artist</span> | ||
</div> | ||
<div> | ||
<span id="bsr">bsr 0000</span> | ||
</div> | ||
<div> | ||
<span id="njs">0 NJS</span> | ||
<span id="bpm">0 BPM</span> | ||
<span id="difficulty">Easy</span> | ||
</div> | ||
</div> | ||
<div id="cover"> | ||
<img id="image"> | ||
|
||
<svg width="90" height="90"> | ||
<rect width="90" height="90" id="darken"></rect> | ||
<circle cx="45" cy="45" r="30" id="remaining"></circle> | ||
<circle cx="45" cy="45" r="30" id="progress"></circle> | ||
</svg> | ||
|
||
<div> | ||
<span id="progress-text">0:00</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="./js/options.js"></script> | ||
|
||
<script src="./js/ui.js"></script> | ||
<script src="./js/events.js"></script> | ||
<script src="./js/manager.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#overlay { | ||
direction: ltr; | ||
right: 40px; | ||
text-align: right; | ||
} | ||
|
||
#titles { | ||
display: block; | ||
} | ||
|
||
#njs { | ||
direction: rtl; | ||
} | ||
|
||
#score { | ||
transform: translate(2px, 0); | ||
} |