|
本帖最后由 星之子 于 2024-8-23 07:19 编辑
功能简介
因为有好朋友经常送我咸鱼,所以打算加入光荣的咸鱼神教。
所谓工欲善其事,必先利其器,因此连夜开发了这款一键批量赠送咸鱼的代码,只要你保存好友的一列UID,就可以反复使用,以迅雷不及掩耳之势偷吸他们的勋章排列。
引用U老师编写的图鉴:
‘没有梦想的咸鱼’,攻击型赠礼勋章,使用最少的成本打乱对面的勋章阵型,同时最短的保质期让对手最快尝到勋章过期消息的失落打击。
HTML代码
<!DOCTYPE html><html lang="zh-CN"><head><meta charset="UTF-8"><title>送条咸鱼</title><style>body{background-image:url("https://img.gamemale.com/album/202407/11/110652gf082t62w6lccc0v.jpg")!important;background-size:cover;background-attachment:fixed;background-position:center;width:400px;margin:0 auto}.centered{text-align:center;margin-bottom:16px;font-size:24px;font-weight:700}.centered img{width:40px;height:40px;border-radius:4px;vertical-align:middle}#ct{background:rgba(232,228,225,.5);transition:all .5s;border-radius:10px;margin:20px;padding:18px}#ct:hover{backdrop-filter:blur(6px);background:rgba(232,228,225,.8)}textarea{width:100%;height:540px;border:none;resize:none;overflow:auto;border-radius:6px;background:rgba(255,255,255,.3);font-size:16px}button{background-color:#fff;font-size:24px;font-weight:700;border-radius:6px;padding:10px;border:none;margin:16px auto 0 auto;display:block}#color_picker{display:none}</style></head><body><div id="ct"><div class="centered"><img src="https://img.gamemale.com/album/201905/13/141900suhhfqzptfzvlfak.gif" alt="咸鱼"> 咸鱼神教 <img src="https://img.gamemale.com/album/201905/13/141900suhhfqzptfzvlfak.gif" alt="咸鱼"></div><textarea id="uidInput" placeholder="请输入UID 每行一个:"></textarea><button id="sendButton">送条咸鱼</button></div><script>const uidInput = document.getElementById('uidInput');
const sendButton = document.getElementById('sendButton');
uidInput.addEventListener('input', () => {
const uidList = uidInput.value.trim().split('\n').filter(uid => uid);
sendButton.textContent = `给${uidList.length}人送条咸鱼`;
});
sendButton.addEventListener('click', () => {
const uidList = uidInput.value.trim().split('\n').filter(uid => uid);
uidList.forEach((uid, index) => {
setTimeout(() => {
var url = "https://www.gamemale.com/wodexunzhang-showxunzhang.html?action=zengsongAction&medalid=195&zs_uid=";
var sum = url + uid + "&checkUID=" + uid;
window.open(sum, '_blank');
}, index * 500);
});
});</script></body></html>
一丢丢说明:- 背景使用的是 @wshtichutu27302 老师画的翼狮。
可以在 background-image:url("https://img.gamemale.com/album/202407/11/110652gf082t62w6lccc0v.jpg") 处替换背景。 - 偶尔会遇到系统繁忙的情况,想要避免的话,可以在 }, index * 500); 这里把默认500毫秒的延迟调高。
效果图
碎碎念
咸鱼神教发力了,真好真不错,每个费老鼻子劲儿写的CODE帖都诞下龙胎,开心滴捏!
求赞环节
如果觉得内容还不错,拜托拜托,请点个免费的追随吧♪(´▽`)/ 感谢!
来自群组: 星象占卜 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
评分
-
查看全部评分
|