Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. </head>
  6. <body>
  7.  
  8. <p id="frase" onmouseover="over()" onmouseout="out()">Tô tranquilo.</p>
  9. <button onclick="normal()">Resetassaporra!</button>
  10.  
  11. <script>
  12. function over() {
  13.     document.getElementById("frase").innerHTML = "FODA-SE";
  14. }
  15. function out() {
  16.     document.getElementById("frase").innerHTML = "CARALHO, VOLTA AQUI";
  17. }
  18. function normal() {
  19.     document.getElementById("frase").innerHTML = "Tô tranquilo.";
  20. }
  21. </script>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement