This commit is contained in:
parent
662d2f4ce5
commit
1e38bdec86
2 changed files with 8 additions and 8 deletions
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||||
<meta name="viewport" content="width=1080, initial-scale=1" />
|
<meta name="viewport" content="width=1160, initial-scale=1" />
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
|
|
14
src/sound.ts
14
src/sound.ts
|
@ -1,10 +1,10 @@
|
||||||
export const toot = new Audio('/sounds/toot.wav');
|
export const toot = new Audio('./sounds/toot.wav');
|
||||||
export const flush = new Audio('/sounds/flush.wav');
|
export const flush = new Audio('./sounds/flush.wav');
|
||||||
export const darn = new Audio('/sounds/darn.mp3');
|
export const darn = new Audio('./sounds/darn.mp3');
|
||||||
export const woohoo = new Audio('/sounds/woohoo.ogg');
|
export const woohoo = new Audio('./sounds/woohoo.ogg');
|
||||||
export const yay = new Audio('/sounds/yay.mp3');
|
export const yay = new Audio('./sounds/yay.mp3');
|
||||||
export const yipee = new Audio('/sounds/yipee.mp3');
|
export const yipee = new Audio('./sounds/yipee.mp3');
|
||||||
export const starman = new Audio('/sounds/starman.mp3');
|
export const starman = new Audio('./sounds/starman.mp3');
|
||||||
|
|
||||||
let count = 0;
|
let count = 0;
|
||||||
const cheers = [woohoo, yay, yipee];
|
const cheers = [woohoo, yay, yipee];
|
||||||
|
|
Loading…
Reference in a new issue