view service/announce/index.html @ 1754:92999dfbf321 default tip

add shelly support
author drewp@bigasterisk.com
date Tue, 04 Jun 2024 13:03:43 -0700
parents f70514b127d2
children
line wrap: on
line source

<!doctype html>
<html>
  <head>
    <title></title>
    <meta charset="utf-8" />
  </head>
  <body>
    <style>
     input { width: 50em; }
    </style>
    <input type="text" id="msg">
    <button id="demo">speak</button>
    <script>
     document.querySelector('#msg').value = 'ding! <prosody rate="100%" pitch="+0%"> normal speech! </prosody>';
     document.querySelector('#demo').addEventListener('click', () => {
       fetch('announcement?text=' + encodeURIComponent(document.querySelector('#msg').value), {
         method: 'POST',
       });
     });
    </script>
  </body>
</html>