bigPoss před 1 měsícem
revize
08af5b098b
1 změnil soubory, kde provedl 162 přidání a 0 odebrání
  1. 162 0
      index.html

+ 162 - 0
index.html

@@ -0,0 +1,162 @@
+<!DOCTYPE html>
+<html lang="zh-CN">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <meta name="apple-mobile-web-app-capable" content="yes">
+  <meta name="apple-mobile-web-app-status-bar-style" content="black">
+  <meta name="format-detection" content="telephone=no">
+  <meta name="msapplication-tap-highlight" content="no">
+  <meta name="apple-mobile-web-app-title" content="喵视网">
+  <title>喵视网</title>
+  <style>
+    body {
+      margin: 0;
+      padding: 0;
+      height: 100vh;
+      display: flex;
+      justify-content: center;
+      align-items: center;
+      background-color: #000;
+    }
+
+    .dialog {
+      width: 76%;
+      background-color: #fff;
+      border-radius: 10px;
+      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5),
+        inset 0 0 15px rgba(255, 255, 255, 0.3);
+      text-align: center;
+      position: relative;
+    }
+
+    .dialog::before {
+      content: '';
+      position: absolute;
+      top: -5px;
+      left: -5px;
+      right: -5px;
+      bottom: -5px;
+      border-radius: 15px;
+      z-index: -1;
+      opacity: 0.7;
+    }
+
+    .dialog {
+      color: #000000;
+      background: radial-gradient(circle at bottom left, #f5f5f5 75%, #ffe6e6);
+    }
+
+    .pupTitle {
+      padding: 4vw;
+      font-size: 4.8vw;
+      font-weight: bold;
+      margin-bottom: 4vw;
+      text-align: center;
+    }
+
+    .pupText {
+      padding: 0 4vw;
+      display: flex;
+      flex-direction: column;
+      gap: 4.26667vw;
+      min-height: 32vw;
+      font-size: 3.46667vw;
+      margin-bottom: 5.33333vw;
+    }
+
+    .pupText .TextTwo {
+      display: flex;
+      flex-direction: column;
+      gap: 0.53333vw;
+      font-weight: 500;
+    }
+
+    .TextTwo span {
+      color: #ff2a14;
+      border: 2px solid #ff2a14;
+      padding: 2px 4px;
+      border-radius: 4px;
+      font-size: 12px;
+      margin-left: 6px;
+      line-height: 1;
+      white-space: nowrap;
+    }
+
+    .TextTwo div {
+      line-height: 1.8;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      flex-wrap: wrap;
+    }
+
+    .TextThree {
+      font-weight: 500;
+      color: #ff2a14;
+    }
+  </style>
+</head>
+
+<body>
+  <div class="dialog">
+    <div class="pupTitle">喵视网APP免享全球资源</div>
+    <div class="pupText">
+      <div class="TextOne">爱优腾芒,爆火短剧,高清影视、统统都有,一站式追不停!全网最全的影视资源,全平台聚合<br />喜欢本站的朋友,可以在小红书/抖音/快手/公众号等平台分享一下!万分感激</div>
+      <div class="TextTwo">
+        <div>在线观看:ys787.app<span id="openBtn">打开</span>
+        </div>
+        <div>官方QQ群1:799061041<span id="qq1">复制</span>
+        </div>
+        <div>官方QQ群2:859660858<span id="qq2">复制</span></div>
+        <div>
+          官方Telegram群:https://t.me/+EifFkmMyobQ5YmI9
+          <span id="qq3">点击复制</span>
+        </div>
+      </div>
+      <div class="TextThree">
+        *永久免费、无广告不卡顿。<br><span>如片源缺失,点击群号即可加群联系~</span>
+      </div>
+    </div>
+  </div>
+
+  <script>
+    document.querySelector('#qq1').addEventListener("click", function () {
+      const text = "799061041";
+      const input = document.createElement("input");
+      input.value = text;
+      document.body.prepend(input);
+      input.select();
+      document.execCommand("copy");
+      document.body.removeChild(input);
+      alert("分享链接复制成功\n快去分享给你的好友吧~");
+    });
+    document.querySelector('#qq2').addEventListener("click", function () {
+      const text = "859660858";
+      const input = document.createElement("input");
+      input.value = text;
+      document.body.prepend(input);
+      input.select();
+      document.execCommand("copy");
+      document.body.removeChild(input);
+      alert("分享链接复制成功\n快去分享给你的好友吧~");
+    });
+    document.querySelector('#qq3').addEventListener("click", function () {
+      const text = "https://t.me/+EifFkmMyobQ5YmI9";
+      const input = document.createElement("input");
+      input.value = text;
+      document.body.prepend(input);
+      input.select();
+      document.execCommand("copy");
+      document.body.removeChild(input);
+      alert("分享链接复制成功\n快去分享给你的好友吧~");
+    });
+    document.querySelector('#openBtn').addEventListener("click", function () {
+      window.open("https://www.ys787.app/", "_blank");
+    });
+
+  </script>
+</body>
+
+</html>