first commit
This commit is contained in:
commit
ba66528512
131
daliy.js
Normal file
131
daliy.js
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
const axios = require('axios');
|
||||||
|
const qs = require('qs');
|
||||||
|
const { stringify } = require('querystring');
|
||||||
|
const headers = {
|
||||||
|
'Host': 'huodong3.3839.com',
|
||||||
|
'Accept': 'application/json, text/javascript, */*; q=0.01',
|
||||||
|
'X-Requested-With': 'XMLHttpRequest',
|
||||||
|
'User-Agent': 'Mozilla/5.0 (Linux; Android 13; RMX3562 Build/TP1A.220905.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36Androidkb/1.5.6.903(android;RMX3562;13;1080x2316;4G);@4399_sykb_android_activity@',
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
||||||
|
'Origin': 'https://huodong3.3839.com',
|
||||||
|
'Sec-Fetch-Site': 'same-origin',
|
||||||
|
'Sec-Fetch-Mode': 'cors',
|
||||||
|
'Sec-Fetch-Dest': 'empty',
|
||||||
|
'Referer': 'https://huodong3.3839.com/n/hykb/grow/daily.php',
|
||||||
|
'Accept-Encoding': 'gzip, deflate',
|
||||||
|
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||||
|
'Cookie': 'UM_distinctid=188f5301bb07e-0b3fe772707e02-12155723-61ed0-188f5301bb16c; Hm_lvt_f1fb60d2559a83c8fa1ee6125a352bd7=1690692437; Hm_lpvt_f1fb60d2559a83c8fa1ee6125a352bd7=1691470971'
|
||||||
|
};
|
||||||
|
const api = 'https://huodong3.3839.com/n/hykb/grow/ajax.php';
|
||||||
|
const daily_list_api = 'https://huodong3.3839.com/n/hykb/grow/daily.php';
|
||||||
|
|
||||||
|
const share_callback_action = 'DailyShareCallb';
|
||||||
|
const share_daily_action = 'DailyShare';
|
||||||
|
// bbs.forEach((id,index) => {
|
||||||
|
// console.log("sign to bbsId => " + id);
|
||||||
|
// let data = qs.stringify({
|
||||||
|
// 'gameId': id
|
||||||
|
// });
|
||||||
|
// config['data'] = data;
|
||||||
|
|
||||||
|
// axios.request(config)
|
||||||
|
// .then((response) => {
|
||||||
|
// console.log(JSON.stringify(response.data));
|
||||||
|
// })
|
||||||
|
// .catch((error) => {
|
||||||
|
// console.log(error);
|
||||||
|
// });
|
||||||
|
// });
|
||||||
|
|
||||||
|
/**
|
||||||
|
* random
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
function generateRandom() {
|
||||||
|
const randomNum = Math.random();
|
||||||
|
return randomNum.toFixed(17);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取数据
|
||||||
|
* @param {*} action DailyShareCallb-分享回调
|
||||||
|
* @param {*} id
|
||||||
|
*/
|
||||||
|
function getApiData(action, id) {
|
||||||
|
let data = qs.stringify({
|
||||||
|
'ac': action,
|
||||||
|
'id': id,
|
||||||
|
'mode': 'weixin',
|
||||||
|
'r': generateRandom(),
|
||||||
|
'scookie': '5|0|38524686|cmFpbmVyb3Npb24=|kb2318B047E13AB3BAC4C9E36B388B6260|7vcwpJVjplVWoJIUpl6xITZO7j9c7lIn7v7OGv6Aov6=%1|2f18a0f2283ce7f6804281632ccdef22',
|
||||||
|
'device': 'kb2318B047E13AB3BAC4C9E36B388B6260'
|
||||||
|
});
|
||||||
|
let config = {
|
||||||
|
method: 'post',
|
||||||
|
maxBodyLength: Infinity,
|
||||||
|
url: api,
|
||||||
|
headers: headers,
|
||||||
|
data: data
|
||||||
|
};
|
||||||
|
let json_data = null;
|
||||||
|
axios.request(config)
|
||||||
|
.then((response) => {
|
||||||
|
// console.log(JSON.stringify(response.data));
|
||||||
|
let json_data = JSON.stringify(response.data);
|
||||||
|
if (action === share_callback_action && json_data && json_data['key'] === "501") {
|
||||||
|
config['data']['ac'] = share_daily_action;
|
||||||
|
axios.request(config)
|
||||||
|
.then((res) => {
|
||||||
|
let daily_json = JSON.stringify(res.data);
|
||||||
|
if (daily_json && daily_json['key'] === "503") {
|
||||||
|
let csd = daily_json['reward_csd_num'];
|
||||||
|
let today_csd = daily_json['day_rw_csd'];
|
||||||
|
console.log("分享获得成熟度 " + csd + " 今日总共获取成熟度 " + today_csd);
|
||||||
|
} else {
|
||||||
|
console.log(JSON.stringify(data));
|
||||||
|
console.log("执行领取任务失败,原始数据 => " + JSON.stringify(res.data) + " id => " + id);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.log(JSON.stringify(data));
|
||||||
|
console.log("执行分享任务失败,原始数据 => " + JSON.stringify(response.data) + " id => " + id);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
});
|
||||||
|
return json_data;
|
||||||
|
}
|
||||||
|
function sleep(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
let config = {
|
||||||
|
method: 'get',
|
||||||
|
url: daily_list_api,
|
||||||
|
headers: headers,
|
||||||
|
};
|
||||||
|
let id_list = [];
|
||||||
|
let response = await axios.request(config);
|
||||||
|
let html = response.data;
|
||||||
|
// console.log(html);
|
||||||
|
//DailyGameLing、DailyAppLing、DailyGameCateLing、DailyDati、DailyFriendLing、DailyJiaoHu
|
||||||
|
const regexPattern = /DailyShare\((\d+)\)/g;
|
||||||
|
let matches = [...html.matchAll(regexPattern)]; // 进行全局匹配
|
||||||
|
if (matches.length > 0) {
|
||||||
|
let values = matches.map(match => match[1]); // 获取所有匹配的数值部分
|
||||||
|
console.log('Found values:', values); // 输出所有匹配到的数值
|
||||||
|
for (const id of values) {
|
||||||
|
console.log("执行分享任务 id => " + id);
|
||||||
|
getApiData(share_callback_action, id);
|
||||||
|
await sleep(15000);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
console.log('Values not found.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
main();
|
||||||
344
day.html
Normal file
344
day.html
Normal file
@ -0,0 +1,344 @@
|
|||||||
|
<ul class="list task" id="daily_list">
|
||||||
|
<li class=" otherModeDiv_1141 " data-id="1141" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','https://huodong3.3839.com/n/hykb/beta/index_tianya.php?comm_id=1105&imm=0','王者荣耀英雄动作手游《王者荣耀星之破晓》测试资格招募已开启!'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230625/1617148427"
|
||||||
|
alt="王者荣耀英雄动作手游《王者荣耀星之破晓》测试资格招募已开启!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>王者荣耀英雄动作手游《王者荣耀星之破晓》测试资格招募已开启! </b> <br>
|
||||||
|
喊好友马上来快爆参与测试资格招募,赢测试资格!现在预约游戏,还有机会抽Switch、游戏手办、移动电源等好礼。
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+3</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1141" onclick="ACT.DailyShare(1141); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1123 " data-id="1123" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','https://huodong3.3839.com/n/hykb/2023xinpinjie/index.php?imm=0','2023「好游快爆新品节」已正式开启!'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230724/09411259550"
|
||||||
|
alt="2023「好游快爆新品节」已正式开启!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>2023「好游快爆新品节」已正式开启!</b><br>
|
||||||
|
喊上你的好友一起来快爆参与《好游快爆新品节》活动并观看发布会直播,新品节期间海量新游开启快爆专属限时试玩,多款游戏秘密情报等你挖掘,更有超多惊喜福利大放送!这个夏季让我们相约好游快爆新品节!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+5</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1123" onclick="ACT.DailyShare(1123); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1139 " data-id="1139" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpGameDetail(135590); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20210716/15071327647"
|
||||||
|
alt="像素风冒险ARPG手游《元气骑士前传》将于9月开启删档测试!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>像素风冒险ARPG手游《元气骑士前传》将于9月开启删档测试!</b><br>
|
||||||
|
好游快爆新品节独家爆料!《元气骑士前传》将于9月开启删档测试,快喊你的好友一起来快爆预约游戏,即可第一时间获取游戏最新动态!同时关注快爆新品节,更多新游资讯到等你来挖~
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+3</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1139" onclick="ACT.DailyShare(1139); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1140 " data-id="1140" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','https://huodong3.3839.com/n/hykb/beta/index_tianya.php?comm_id=1113&imm=0','腾讯多英雄战术竞技射击手游《高能英雄》快爆专属资格招募已开启!'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230718/17134198595"
|
||||||
|
alt="腾讯多英雄战术竞技射击手游《高能英雄》快爆专属资格招募已开启!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>腾讯多英雄战术竞技射击手游《高能英雄》快爆专属资格招募已开启!</b> <br>
|
||||||
|
未来科幻战术竞技《高能英雄》测试招募再次开启,喊好友马上来好游快爆填写问卷有机会得小规模特邀品鉴测试资格,现在预约游戏,待游戏上线后还可获得高级幸运宝箱等好礼!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+3</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1140" onclick="ACT.DailyShare(1140); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1142 " data-id="1142" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','https://huodong3.3839.com/n/hykb/beta/index_tianya.php?comm_id=1111&imm=0','殿堂级JRPG女神异闻录5正版授权《女神异闻录:夜幕魅影》快爆专属资格招募已开启!'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbdev/opensj/20230316/10543549787"
|
||||||
|
alt="殿堂级JRPG女神异闻录5正版授权《女神异闻录:夜幕魅影》快爆专属资格招募已开启!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>殿堂级JRPG女神异闻录5正版授权《女神异闻录:夜幕魅影》快爆专属资格招募已开启!</b> <br>
|
||||||
|
马上喊好友一起来快爆参与专属招募赢8月18日上午10点限量测试资格!现在预约游戏,待游戏上线后即可第一时间收到推送消息!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+3</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1142" onclick="ACT.DailyShare(1142); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1134 " data-id="1134" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','https://m.3839.com/c/151256.htm','《代号:540-武士零》快爆新品节独家限时测试已开启,免资格尽情畅玩!'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230726/10361965869"
|
||||||
|
alt="《代号:540-武士零》快爆新品节独家限时测试已开启,免资格尽情畅玩!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>《代号:540-武士零》快爆新品节独家限时测试已开启,免资格尽情畅玩!</b> <br>
|
||||||
|
Steam神作移植手游《代号:540-武士零》快爆限时测试已开启,无需测试资格即可尽情畅玩!马上来快爆内体验游戏,预约游戏,待游戏上线后还可第一时间收到通知!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+3</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1134" onclick="ACT.DailyShare(1134); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1124 " data-id="1124" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('6','5983223','快爆暑期周边特卖会将于8月11日下午17点开启'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230803/17125212620"
|
||||||
|
alt="快爆暑期周边特卖会将于8月11日下午17点开启"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>「快爆暑期周边特卖会」将于8月11日下午17点准时开启!</b><br>
|
||||||
|
不为感情流一滴眼泪,只为抢不到周边夜不能寐,你还在为抢不到商品感到颓废吗?你还在看着敬请期待而郁闷崩溃吗?现在店长给你一次机会!快爆暑期周边特卖会超千份周边史低折扣等你来拿!更有神秘大礼大派送!喊上你的好友跟我一起盘它!盘它!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+5</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1124" onclick="ACT.DailyShare(1124); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_1128 " data-id="1128" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','https://huodong3.i3839.com/n/hykb/qdjh/index.php?fg','【福利】8月签到礼包已更新,每日签到领快爆独家游戏礼包!'); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230801/0956555673"
|
||||||
|
alt="【福利】8月签到礼包已更新,每日签到领快爆独家游戏礼包!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>【福利】8月签到礼包已更新,每日签到领快爆独家游戏礼包!</b><br>
|
||||||
|
每日参与签到即可领赛尔号页游、妄想山海、黎明觉醒:生机、逃跑吧!少年、使命召唤手游、光遇等多款热门手游礼包!喊好友一起来快爆参与签到,趣玩好游!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>成熟度<strong>+3</strong></i></label></p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_1128" onclick="ACT.DailyShare(1128); return false;"
|
||||||
|
data-shareype="allnoweibo" data-success="-1">去分享
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" downModeDiv downModeDiv_1119 downAppDiv" data-id="1119" data-vs="1" style="display:none;">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpGameDetail(89222); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230727/10092337361" alt="光遇新季节“拾光季”开启!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>光遇新季节“拾光季”开启!</b><br>
|
||||||
|
<i>马上在快爆内下载更新《光·遇-拾光季》 并体验游戏!</i>奇妙礼遇卡、装扮助力金、浪漫烟花礼包、畅谈长桌礼包等好礼等你来拿!每日参与签到还有留影蜡烛、爱心礼包等好礼免费领!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+5</strong>、</i><i>成熟度<strong>+8</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green hkyb-download" id="daily_btn_1119" data-mode="3" data-rwid="1119"
|
||||||
|
data-gameid="89222" data-addcsd="8" data-addbmh="5">立即下载
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_game_ling_btn_1119" onclick="ACT.DailyGameLing(1119); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class=" downModeDiv downModeDiv_1093 downAppDiv" data-id="1093" data-vs="1" style="display:none;">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpGameDetail(136127); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230711/0934546611"
|
||||||
|
alt="热游推荐-腾讯高拟真射击手游《暗区突围》!"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>热游推荐-腾讯高拟真射击手游《暗区突围》!</b><br>
|
||||||
|
全新“北山袭击案玩法”登场,现在下载安装《暗区突围》并体验一段时间即可领取奖励,任务开放期间,每天来体验游戏还能持续领取奖励!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+5</strong>、</i><i>成熟度<strong>+5</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green hkyb-download" id="daily_btn_1093" data-mode="3" data-rwid="1093"
|
||||||
|
data-gameid="136127" data-addcsd="5" data-addbmh="5">立即下载
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_game_ling_btn_1093" onclick="ACT.DailyGameLing(1093); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class=" downModeDiv downModeDiv_1103 downAppDiv" data-id="1103" data-vs="1" style="display:none;">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpGameDetail(130117); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230711/10175975566" alt="《蛋仔派对》下载任务"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>爆款-《蛋仔派对》全新赛季“梦幻星遇季活动火热进行中!</b><br>
|
||||||
|
<i>马上在快爆内下载更新游戏</i>体验全新赛季玩法,参与活动还有捕梦软软皮肤助力金、星云咩咩皮肤助力金、派对手册、蛋仔周边、超多游戏礼包等你来拿哟~
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+3</strong>、</i><i>成熟度<strong>+5</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green hkyb-download" id="daily_btn_1103" data-mode="3" data-rwid="1103"
|
||||||
|
data-gameid="130117" data-addcsd="5" data-addbmh="3">立即下载
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_game_ling_btn_1103" onclick="ACT.DailyGameLing(1103); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class=" downModeDiv downModeDiv_1094 downAppDiv" data-id="1094" data-vs="1" style="display:none;">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpGameDetail(97822); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230321/18355539702" alt="《逃跑吧!少年》下载任务"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>热游推荐-非对称竞技手游《逃跑吧!少年》</b><br>
|
||||||
|
现在下载安装《逃跑吧!少年》并体验一段时间即可领取奖励,任务开放期间,每天来体验游戏还能继续领取奖励!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+2</strong>、</i><i>成熟度<strong>+5</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green hkyb-download" id="daily_btn_1094" data-mode="3" data-rwid="1094"
|
||||||
|
data-gameid="97822" data-addcsd="5" data-addbmh="2">立即下载
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_game_ling_btn_1094" onclick="ACT.DailyGameLing(1094); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="tj otherModeDiv_532 downAppDiv" data-id="532" data-vs="1" style="display:none;">
|
||||||
|
<a href="" data-biaoshi="toFastPlayHome" data-id="532"
|
||||||
|
onclick="ACT.DailyAppJump(this); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20230713/19421068057" alt="好游快玩"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>【在线玩频道】免安装即点即玩</b><br>
|
||||||
|
前往快爆在线玩频道,畅玩精品快玩游戏、云游戏,免安装即点即玩!游玩一段时间即可领取奖励,认真体验后还可发表游戏评价,分享对游戏的见解。
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+5</strong>、</i><i>成熟度<strong>+5</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green" data-biaoshi="toFastPlayHome" data-id="532"
|
||||||
|
onclick="ACT.DailyAppJump(this); return false;">去体验
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_btn_532" onclick="ACT.DailyAppLing(532); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_546 " data-id="546" data-vs="1" style="">
|
||||||
|
<a href="" data-cate11_id="396" data-cate11_title="" data-cate11_ext="301" data-id="546"
|
||||||
|
onclick="ACT.DailyGameCateJump(this); return false;"><img
|
||||||
|
src="https://img.71acg.net/kbyx~sykb/20211009/17571834940" alt="爆友热玩"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>精品栏目推荐-【近期爆友热玩游戏】</b><br>
|
||||||
|
为你推荐众多爆友都在玩的游戏,解决你的游戏荒!前往下载游戏并游玩一段时间即可领取奖励,还可参与创建游戏单,安利分享你心目中的经典好游!
|
||||||
|
</p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+5</strong>、</i><i>成熟度<strong>+5</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button id="daily_start_btn_546" class="green" data-cate11_id="396" data-cate11_title=""
|
||||||
|
data-cate11_ext="301" data-id="546" onclick="ACT.DailyGameCateJump(this); return false;">去下载
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_btn_546" onclick="ACT.DailyGameCateLing(546); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_4 downAppDiv" data-id="4" data-vs="1" style="display:none;">
|
||||||
|
<a href="" onclick="ACT.DailyDati(4); return false;"
|
||||||
|
data-success="-1"><img src="//fs.img4399.com/sykb~sykb/20180629/17000298383" alt="每日答题"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>每日答题</b><br>
|
||||||
|
每天获取新知识,丰富你的视野。 </p>
|
||||||
|
<p><label class="name">奖励</label><label> <i>爆米花<strong>+3</strong>、</i><i>成熟度<strong>+3</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<button class="green" id="daily_btn_4" onclick="ACT.DailyDati(4); return false;" data-success="-1">
|
||||||
|
开始答题
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_128 " data-id="128" data-vs="1" style="">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.DailyFriendsJump(); return false;"><img
|
||||||
|
src="https://fs.img4399.com/sykb~sykb/20191111/18194519933" alt="好友互动"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>好友互动</b><br>
|
||||||
|
每天帮助好友照料玉米3次,即可领取奖励。 </p>
|
||||||
|
<p><label class="name">奖励</label><label>
|
||||||
|
<i>爆米花<strong>+10</strong>、</i><i>成熟度<strong>+10</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green" onclick="ACT.DailyFriendsJump(); return false;">去完成</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_btn_128" onclick="ACT.DailyFriendLing(128); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class=" otherModeDiv_489 downAppDiv" data-id="489" data-vs="1" style="display:none;">
|
||||||
|
<a href=""
|
||||||
|
onclick="ACT.JumpUrlArc('4','http://huodong3.3839.com/n/hykb/friend/index.php','快爆社区新人种草计划'); return false;"><img
|
||||||
|
src="https://fs.img4399.com/sykb~sykb/20190614/0953401723" alt="快爆社区新人种草计划"></a>
|
||||||
|
<div class="des">
|
||||||
|
<p>
|
||||||
|
<b>种草好友一起用快爆</b><br>
|
||||||
|
当天成功种草<i>1个</i>好友通过你的种草链接下载体验快爆,即可领取奖励!<br></p>
|
||||||
|
<p><label class="name">奖励</label><label>
|
||||||
|
<i>爆米花<strong>+10</strong>、</i><i>成熟度<strong>+5</strong></i></label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="btn-bar">
|
||||||
|
<p>
|
||||||
|
<button class="green"
|
||||||
|
onclick="ACT.DailyJiaoHuGoUrl('https://huodong3.3839.com/n/hykb/friend/index.php','快爆社区新人种草计划'); return false;">
|
||||||
|
去完成
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button class="blue" id="daily_btn_489" onclick="ACT.DailyJiaoHu(489); return false;"
|
||||||
|
data-success="-1">领取奖励
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
133
package-lock.json
generated
Normal file
133
package-lock.json
generated
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
{
|
||||||
|
"requires": true,
|
||||||
|
"lockfileVersion": 1,
|
||||||
|
"dependencies": {
|
||||||
|
"asynckit": {
|
||||||
|
"version": "0.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||||
|
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
|
||||||
|
},
|
||||||
|
"axios": {
|
||||||
|
"version": "1.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz",
|
||||||
|
"integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==",
|
||||||
|
"requires": {
|
||||||
|
"follow-redirects": "^1.15.0",
|
||||||
|
"form-data": "^4.0.0",
|
||||||
|
"proxy-from-env": "^1.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"call-bind": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
||||||
|
"requires": {
|
||||||
|
"function-bind": "^1.1.1",
|
||||||
|
"get-intrinsic": "^1.0.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"combined-stream": {
|
||||||
|
"version": "1.0.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||||
|
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||||
|
"requires": {
|
||||||
|
"delayed-stream": "~1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"delayed-stream": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
|
||||||
|
},
|
||||||
|
"follow-redirects": {
|
||||||
|
"version": "1.15.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
|
||||||
|
"integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="
|
||||||
|
},
|
||||||
|
"form-data": {
|
||||||
|
"version": "4.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
|
||||||
|
"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
|
||||||
|
"requires": {
|
||||||
|
"asynckit": "^0.4.0",
|
||||||
|
"combined-stream": "^1.0.8",
|
||||||
|
"mime-types": "^2.1.12"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"function-bind": {
|
||||||
|
"version": "1.1.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
||||||
|
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
||||||
|
},
|
||||||
|
"get-intrinsic": {
|
||||||
|
"version": "1.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
|
||||||
|
"integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
|
||||||
|
"requires": {
|
||||||
|
"function-bind": "^1.1.1",
|
||||||
|
"has": "^1.0.3",
|
||||||
|
"has-proto": "^1.0.1",
|
||||||
|
"has-symbols": "^1.0.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has": {
|
||||||
|
"version": "1.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
||||||
|
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
||||||
|
"requires": {
|
||||||
|
"function-bind": "^1.1.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has-proto": {
|
||||||
|
"version": "1.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
|
||||||
|
"integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="
|
||||||
|
},
|
||||||
|
"has-symbols": {
|
||||||
|
"version": "1.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
|
||||||
|
"integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
|
||||||
|
},
|
||||||
|
"mime-db": {
|
||||||
|
"version": "1.52.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
||||||
|
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
|
||||||
|
},
|
||||||
|
"mime-types": {
|
||||||
|
"version": "2.1.35",
|
||||||
|
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
||||||
|
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
||||||
|
"requires": {
|
||||||
|
"mime-db": "1.52.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"object-inspect": {
|
||||||
|
"version": "1.12.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
|
||||||
|
"integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="
|
||||||
|
},
|
||||||
|
"proxy-from-env": {
|
||||||
|
"version": "1.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
||||||
|
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
|
||||||
|
},
|
||||||
|
"qs": {
|
||||||
|
"version": "6.11.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
|
||||||
|
"integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
|
||||||
|
"requires": {
|
||||||
|
"side-channel": "^1.0.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"side-channel": {
|
||||||
|
"version": "1.0.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
|
||||||
|
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
|
||||||
|
"requires": {
|
||||||
|
"call-bind": "^1.0.0",
|
||||||
|
"get-intrinsic": "^1.0.2",
|
||||||
|
"object-inspect": "^1.9.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user