index.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <!DOCTYPE html>
  2. <html lang="en" style="font-size: 50px;">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalabel=0" />
  6. <link rel="shortcut icon" href="./img/favicon.ico">
  7. <title>9169-激情、欲望、爱</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. color: #eaeaea;
  15. background-color: #121212;
  16. transition: color 0.5s, background-color 0.5s;
  17. }
  18. .content {
  19. width: 100vw;
  20. height: 100vh;
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: center;
  25. }
  26. .guide_title {
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. position: relative;
  31. bottom: -0.18rem;
  32. }
  33. .guide_img {
  34. height: 0.52rem;
  35. }
  36. .guide_title_text {
  37. margin-left: 0.12rem;
  38. color: #EB7926;
  39. font-size: .48rem;
  40. font-weight: 600;
  41. }
  42. .guide_des {
  43. border-radius: 0.06rem;
  44. padding: 0.26rem 0;
  45. text-align: center;
  46. color: #FFF;
  47. font-size: 0.32rem;
  48. font-weight: 600;
  49. }
  50. .address {
  51. font-weight: 600;
  52. font-size: 14px;
  53. width: 300px;
  54. height: 0.96rem;
  55. color: #dfdfdf;
  56. display: flex;
  57. gap: 0.26rem;
  58. align-items: center;
  59. border-radius: 0.16rem;
  60. background: rgba(0, 0, 0, 0.5);
  61. border: 1px solid #333;
  62. overflow: hidden;
  63. }
  64. .address_title {
  65. height: 0.96rem;
  66. line-height: 0.96rem;
  67. text-align: center;
  68. width: 2rem;
  69. background-color: #eb7926;
  70. }
  71. .address_value {
  72. font-size: 16px;
  73. }
  74. .downText {
  75. color: #FFF;
  76. text-align: center;
  77. font-size: .32rem;
  78. font-weight: 600;
  79. margin: .2rem 0;
  80. }
  81. #iosdownload {
  82. margin-top: 0.26rem;
  83. }
  84. .downloadLine img {
  85. width: 6.2rem;
  86. height: auto;
  87. }
  88. .addressTxt {
  89. color: #FFF;
  90. text-align: center;
  91. font-size: .28rem;
  92. font-weight: 600;
  93. }
  94. .email_address {
  95. text-align: center;
  96. margin-top: .26rem;
  97. color: #dfdfdf;
  98. font-size: 0.28rem;
  99. }
  100. </style>
  101. </head>
  102. <body>
  103. <div class="content">
  104. <div class="guide_title">
  105. <img class="guide_img" src="./img//logo.png">
  106. <p class="guide_title_text">-激情、欲望、爱</p>
  107. </div>
  108. <div class="guide_des">更牛逼、更刺激的的私密看片软件</div>
  109. <div class="address" id="addressBox">
  110. <div class="address_title">永久地址</div>
  111. <div class="address_value" id="addressValue">9169.app</div>
  112. </div>
  113. <div class="downText">—— 永久有效客户端,请务必下载 ——</div>
  114. <div id="iosdownload" class="downloadLine">
  115. <img src="./img/download2.png">
  116. </div>
  117. <div id="androiddownload" class="downloadLine">
  118. <img src="./img/download1.png">
  119. </div>
  120. <div class="addressTxt" id="addressTxt">
  121. 请下载客户端进行影片观看<br>当前可用,请尽快下载! <br>如客户端失效,24小时内将更新
  122. </div>
  123. <p class="email_address">联系邮箱:www.9169.app@gmail.com</p>
  124. </div>
  125. <script>
  126. document.addEventListener("DOMContentLoaded", function () {
  127. fetch("https://api.9169av1.app/bibidd/Mediaonesevenfive/shouye_lianjei")
  128. .then(response => response.json())
  129. .then(res => {
  130. const data = res.data;
  131. document.getElementById("addressValue").textContent = data[0].url;
  132. const formattedText = data[4].url.replace(/\*/g, "<br>");
  133. document.getElementById("addressTxt").innerHTML = formattedText;
  134. document.getElementById("androiddownload").addEventListener("click", function () {
  135. window.location.href = data[1].url;
  136. });
  137. document.getElementById("iosdownload").addEventListener("click", function () {
  138. window.location.href = data[2].url;
  139. });
  140. });
  141. document.getElementById("addressBox").addEventListener("click", function () {
  142. const tempInput = document.createElement("input");
  143. tempInput.value = "超爽超刺激的看片神器,复制地址到浏览器打开,即可畅快看片 \n https://9169.app/";
  144. document.body.appendChild(tempInput);
  145. tempInput.select();
  146. document.execCommand("copy");
  147. document.body.removeChild(tempInput);
  148. alert("分享链接复制成功\n快去分享给你的好友吧~");
  149. });
  150. });
  151. </script>
  152. </body>
  153. </html>