Compare commits
7 Commits
3f665d115a
...
3d8bc0ce11
| Author | SHA1 | Date | |
|---|---|---|---|
|
3d8bc0ce11
|
|||
|
3729a3762a
|
|||
| 4b2cd0e5d2 | |||
| 08763c501e | |||
| bc5de2448d | |||
| 67a0f06d03 | |||
| 2f1ec2a6f7 |
@@ -41,6 +41,10 @@ body {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#timeCell {
|
||||
min-width: 10ch;
|
||||
}
|
||||
|
||||
.minoes-table {
|
||||
--piece-column: 0;
|
||||
--piece-row : 0;
|
||||
|
||||
@@ -76,7 +76,7 @@ tr.matrix td:not(.mino) {
|
||||
}
|
||||
|
||||
.ghost.mino {
|
||||
opacity: 50%;
|
||||
opacity: 5%;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
@@ -120,7 +120,7 @@ td {
|
||||
}
|
||||
|
||||
@keyframes blinker {
|
||||
50% {
|
||||
35% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<link rel="alternate stylesheet" href="css/synthwave.css" title="Synthwave">
|
||||
<link rel="alternate stylesheet" href="css/retro.css" title="Rétro">
|
||||
<link rel="alternate stylesheet" href="css/opera.css" title="Opéra">
|
||||
<link rel="alternate stylesheet" href="css/binaural.css" title="Binaural">
|
||||
<link rel="alternate stylesheet" href="css/stereo.css" title="Stéréo">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="favicons/T-2.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
|
||||
@@ -77,7 +77,7 @@
|
||||
<option value="css/electro.css">Électro</option>
|
||||
<option value="css/retro.css">Rétro</option>
|
||||
<option value="css/opera.css">Opéra</option>
|
||||
<option value="css/binaural.css">Binaural</option>
|
||||
<option value="css/stereo.css">Stéréo</option>
|
||||
</select></div>
|
||||
<div class="col-4 d-flex align-items-baseline"><input name="sfxVolumeRange" id="sfxVolumeRange" class="form-range" type="range" min="0" max="1" step="any" value="0.7"></div>
|
||||
<label for="sfxVolumeRange" class="col-2 col-form-label">Volume</label>
|
||||
|
||||
@@ -328,7 +328,7 @@ class Tetromino {
|
||||
let success = this.canMove(translation, rotation)
|
||||
if (success) {
|
||||
scheduler.clearTimeout(lockDown)
|
||||
matrix.drawPiece(this, hardDropped? "trail-animation" : "")
|
||||
matrix.drawPiece(this, translation == TRANSLATION.DOWN? "trail-animation" : "")
|
||||
this.center = success.center
|
||||
if (rotation) this.facing = success.facing
|
||||
this.lastRotation = rotation
|
||||
|
||||
Reference in New Issue
Block a user