sc.html 1.2 KB
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <link rel="stylesheet" href="style.css" />
        <title>La Harpe Laser</title>
    </head>

    <body>
        <h1>La Harpe Laser</h1>
        <p>Dans le cadre de notre projet de Système Communiquant,nous avons réalisé une <strong>harpe laser</strong>. Notre but est de créer un instrument de musique similaire à une harpe, où les cordes sont remplacées par des capteurs infra-rouges.</p>
        <p><a href="harpe_laser.jpg"><img src="mini.jpg" alt="Harpe Laser" title="Cliquez pour agrandir" /></a></p>
        <button onclick="play()">Play</button>
        <button onclick="stop()">Stop</button>
        <p> Pour accéder à notre wiki, où nous détaillons le processus de réalisation de la harpe, vous pouvez cliquer <a href="http://projets-ima.plil.net/mediawiki/index.php?title=Projet_IMA3_P5,_2016/2017,_TD1">ici</a></p>

        <script>
            function play() {
                autorisation = 1;
                alert(autorisation);
            }
            function stop(){
                autorisation = 0;
                alert(autorisation);
            }
        </script>

    </body>
</html>