|
@@ -0,0 +1,80 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html lang="zh-CN">
|
|
|
|
+
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="UTF-8">
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
|
|
+ <title>周年庆活动</title>
|
|
|
|
+ <link rel="icon" href="../static/img/favicon2.ico" type="img/x-ico">
|
|
|
|
+ <link rel="stylesheet" href="../static/js/vender/toastr/toastr.min.css">
|
|
|
|
+ <link rel="stylesheet" href="../static/css/anniversaryCelebrate.css">
|
|
|
|
+ <script src="../static/js/vender/jquery-3.4.1.min.js"></script>
|
|
|
|
+ <script src="../static/js/vender/toastr/toastr.min.js"></script>
|
|
|
|
+ <script src="../static/js/vender/config.js"></script>
|
|
|
|
+</head>
|
|
|
|
+
|
|
|
|
+<body>
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="rule-wrap">
|
|
|
|
+ <img class="rule" src="../static/img/anniversaryCelebrate/rule.png" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="activity-text-wrap">
|
|
|
|
+ <img class="activity-text" src="../static/img/anniversaryCelebrate/activity-text.png" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="activity-tips-wrap">
|
|
|
|
+ <img class="activity-tips" src="../static/img/anniversaryCelebrate/activity-tips.png" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="star-wrap">
|
|
|
|
+ <img class="star" src="../static/img/anniversaryCelebrate/star.png" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="station-wrap">
|
|
|
|
+ <img class="station" src="../static/img/anniversaryCelebrate/station.png" />
|
|
|
|
+ <div class="station-text-wrap">
|
|
|
|
+ <div class="once-text">购买/续费星曜月卡,获得 1次 点亮资格</div>
|
|
|
|
+ <div class="ten-text">购买/续费星曜年卡,获得 10次 点亮资格</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="btn-list">
|
|
|
|
+ <img class="once-btn btn" src="../static/img/anniversaryCelebrate/once.png" />
|
|
|
|
+ <img class="five-btn btn" src="../static/img/anniversaryCelebrate/fifce.png" />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="number-wrap">
|
|
|
|
+ <div class="rest-times">剩余次数<span class="rest-number">1000</span>次</div>
|
|
|
|
+ <div class="small-star-wrap">
|
|
|
|
+ <img class="small-star" src="../static/img/anniversaryCelebrate/small-star.png" />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <script>
|
|
|
|
+ toastr.options.positionClass = 'toast-center-center';
|
|
|
|
+ toastr.options.timeOut = '1500';
|
|
|
|
+ </script>
|
|
|
|
+ <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
|
|
|
|
+ <script type="text/javascript">
|
|
|
|
+ // var baseUrl = 'https://per.cs.se.androidscloud.com'
|
|
|
|
+ let timer,flag = true;
|
|
|
|
+ var url = window.location.href;
|
|
|
|
+ url = url.split('/')
|
|
|
|
+ var loc = window.location.search,
|
|
|
|
+ n1 = loc.length,//地址的总长度
|
|
|
|
+ n2 = loc.indexOf("="),//取得=号的位置
|
|
|
|
+ id = loc.substr(n2 + 1, n1 - n2),//从=号后面的内容
|
|
|
|
+ u = navigator.userAgent,
|
|
|
|
+ ua = navigator.userAgent.toLowerCase(),
|
|
|
|
+ isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
|
|
|
|
+ isMiniprogram = false,
|
|
|
|
+ isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
|
|
|
|
+ //
|
|
|
|
+ //防止提示一秒内重复显示
|
|
|
|
+ function stopManyClick(fn) {
|
|
|
|
+ if (flag) {
|
|
|
|
+ fn();
|
|
|
|
+ }
|
|
|
|
+ flag = false;
|
|
|
|
+ if(timer){clearTimeout(timer);}
|
|
|
|
+ timer = setTimeout(() => {flag = true}, 1500);
|
|
|
|
+ }
|
|
|
|
+ </script>
|
|
|
|
+</body>
|
|
|
|
+
|
|
|
|
+</html>
|