Blame view

projetSC/sc_internet/sc.html 1.2 KB
1f48dd44   mdelapor   mise en ligne du ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <!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>