2022-12-30 20:14:35 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Buzzer</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="w3.css" type="text/css">
|
|
|
|
<script type="text/javascript" src="script.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="w3-animate-opacity">
|
|
|
|
<div class="w3-card w3-blue w3-padding-small w3-center">
|
|
|
|
<h1>Buzzer</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="w3-margin w3-center w3-card w3-padding-24">
|
|
|
|
<button onclick="play()" class="w3-button w3-blue w3-xlarge w3-ripple">Jouer le son</button>
|
2023-01-02 23:05:18 +01:00
|
|
|
<button onclick="stop()" class="w3-button w3-blue w3-xlarge w3-ripple">Stop</button>
|
2022-12-30 20:14:35 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="w3-margin w3-center w3-card w3-padding-24">
|
2023-01-01 02:43:54 +01:00
|
|
|
<div id="available-files"></div>
|
2022-12-30 20:14:35 +01:00
|
|
|
</div>
|
2023-01-02 22:10:01 +01:00
|
|
|
|
|
|
|
<div class="w3-margin w3-center w3-card w3-padding-24">
|
|
|
|
<button id="volume-decrease" onclick="volume(-1)" class="w3-button w3-blue w3-xlarge w3-ripple">Vol-</button>
|
|
|
|
<span id="volume-current"></span>
|
|
|
|
<button id="volume-increase" onclick="volume(1)" class="w3-button w3-blue w3-xlarge w3-ripple">Vol+</button>
|
|
|
|
</div>
|
2022-12-30 20:14:35 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|