Advertisement
Izya12

page.htm

Jun 10th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.31 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>Wi-Fi Button</title>
  5. <style>
  6. body {
  7.     font-family: sans-serif;
  8.     color: #555;
  9.     background-color: #eee;
  10.     width:100%;
  11. }
  12. </style>
  13. <script language="javascript">
  14. function loadXMLDoc(stat) {
  15.     var xmlhttp;
  16.     try {
  17.         xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  18.     } catch (e) {
  19.         try {
  20.           xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  21.         } catch (E) {
  22.           xmlhttp = false;
  23.         }
  24.     }
  25.     if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
  26.       xmlhttp = new XMLHttpRequest();
  27.     }
  28.     xmlhttp.open("GET","load=" + stat + ".pht",true);
  29.     xmlhttp.send();
  30. }
  31. </script>
  32. </head>
  33. <body>
  34. <hr />
  35. <p style="text-align: center;">Освещение</p>
  36. <button onclick="loadXMLDoc('0')" style="width:40%; height:150px; background-color:#f00;text-align: center;">OFF</button>
  37. <button onclick="loadXMLDoc('1')" style="width:40%; height:150px; background-color:#0f0;text-align: center;">ON</button>
  38. <p style="text-align: center;">Подсветка</p>
  39. <button onclick="loadXMLDoc('3')" style="width:40%; height:150px; background-color:#f00;text-align: center;">OFF</button>
  40. <button onclick="loadXMLDoc('2')" style="width:40%; height:150px; background-color:#0f0;text-align: center;">ON</button>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement