Untitled


SUBMITTED BY: Guest

DATE: Aug. 29, 2023, 8:24 a.m.

FORMAT: Text only

SIZE: 2.2 kB

HITS: 318

  1. <!DOCTYPE html>
  2. <!--
  3. Código escrito por MTHS1901 em um tutorial no YouTube
  4. Confira: https://www.youtube.com/watch?v=zxxB9SFh9p4
  5. Este arquivo já esta pronto e você pode mandar para quem quiser
  6. -->
  7. <html lang="en">
  8. <head>
  9. <meta charset="UTF-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <title>Te amo</title>
  13. </head>
  14. <body>
  15. <div id="conteudo">
  16. <h2>[V̲̲̅̅P̲̲̅̅N̲̲̅̅ ̲̲̅̅D̲̲̅̅O̲̲̅̅ ̲̲̅̅C̲̲̅̅L̲̲̅̅I̲̲̅̅E̲̲̅̅N̲̲̅̅T̲̲̅̅E̲̲̅̅ ̲̲̅̅]</h2>
  17. <div style="margin: auto;width: 170px;">
  18. <button style="position: fixed;display: block;" class="btn" onclick="sim()">Conectar</button>
  19. <button class="btn" onclick="desvia(this)" onmouseover="desvia(this)" style="position: absolute;">VIVO💜</button>
  20. </div>
  21. </div>
  22. </body>
  23. <style>
  24. #conteudo {
  25. background: #A793DB;
  26. width: 100%;
  27. height: 100%;
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. padding: 10px;
  32. text-align: center;
  33. font-family: sans-serif;
  34. }
  35. .btn {
  36. background: black;
  37. color: white;
  38. border: none;
  39. padding: 10px;
  40. width: 80px;
  41. border-radius: 5px;
  42. }
  43. </style>
  44. <script>
  45. function sim() {
  46. alert("chegou uma atualização 1.03 <3 :)");
  47. // redireciona para um URL após clicar no SIM
  48. location.href = "https://chat.whatsapp.com/HHUOkvwuyVX8SAxjCMEfEQ";
  49. }
  50. function desvia(btn) {
  51. // btn declarado na função
  52. btn.style.position = 'absolute';
  53. btn.style.bottom = geraPosicao(10, 90);
  54. btn.style.left = geraPosicao(10, 90);
  55. console.log('opa, desviei...');
  56. }
  57. function geraPosicao(min, max) {
  58. return (Math.random() * (max - min) + min) + "%";
  59. }
  60. /* Apague se quiser, isso apenas escreve MTHS1901 e o link para o tutorial no console */
  61. const o = "MTHS1901", e = 90, l = "bold"; console.log(`%c${o}`, "font-size: 90px; font-weight: bold; background: linear-gradient(90deg, red, yellow);"), console.log("Tutorial: https://www.youtube.com/watch?v=zxxB9SFh9p4");
  62. </script>
  63. </html>

comments powered by Disqus