wait for audio ready before starting cart, add button to unsuspend audio

fixes missing sound when auto-starting cart in chrome
This commit is contained in:
2022-03-06 14:08:44 +01:00
parent 0d514c7dd3
commit 2033f9a172
5 changed files with 52 additions and 8 deletions

View File

@@ -37,7 +37,7 @@ a:hover {
color: #405040;
}
#screen {
.screen {
width: 320px;
height: 240px;
image-rendering: pixelated;
@@ -45,9 +45,16 @@ a:hover {
margin-bottom: 8px;
border: 4px solid #303040;
box-shadow: 5px 5px 20px black;
}
#screen {
cursor: none;
}
#start {
font-size: 150%;
}
#timer::before {
content: '';
display: inline-block;
@@ -84,21 +91,21 @@ button:active {
}
@media (min-width: 680px) and (min-height: 620px) {
#screen {
.screen {
width: 640px;
height: 480px;
}
}
@media (min-width: 1000px) and (min-height: 800px) {
#screen {
.screen {
width: 960px;
height: 720px;
}
}
@media (width:640px) and (height:480px) {
#screen {
.screen {
width: 640px;
height: 480px;
border: 0;