Advertisement
Guest User

html moises

a guest
Dec 22nd, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.06 KB | None | 0 0
  1. <HTML>
  2. <HEAD>
  3. <TITLE>Arduino</TITLE>
  4. </HEAD>
  5. <BODY>
  6.  
  7. <H1><center>ARDUINO WEB BUTTON</center></H1>
  8.            
  9. <br>
  10.          
  11. <table align='center' border=10 bgcolor='green' ><th><h2><div onmousedown='mDown(this,"1ON")' onmouseup='mUp(this,"1OFF")' style='background-color:'#D94A38';width:130px;height:30px;padding:10px;'>-0-</div></table>
  12. <br>
  13. <table align='center' border=10 bgcolor='green' ><th><h2><div onmousedown='mDown(this,"2ON")' onmouseup='mUp(this,"2OFF")' style='background-color:'#D94A38';width:130px;height:30px;padding:10px;'>-0-</div></table>
  14. <br>
  15. <table align='center' border=10 bgcolor='green' ><th><h2><div onmousedown='mDown(this,"3OFF")' onmouseup='mUp(this,"3OFF")' style='background-color:'#D94A38';width:130px;height:30px;padding:10px;'>-0-</div></table>
  16.          
  17. <script>
  18. function mDown(obj,comando){obj.style.backgroundColor='#1ec5e5';obj.innerHTML='ACESO';location.href="?" + comando}
  19.  
  20. function mUp(obj,comando){obj.style.backgroundColor='#D94A38';obj.innerHTML='APAGADO';location.href="?" + comando}
  21. </script>
  22.          
  23. </BODY>
  24. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement