提示:如果官网是英文页面,建议使用谷歌浏览器能同步翻译页面。点击下载【谷歌浏览器最新绿色便携版】
注意:部分文章发布时间较长,可能存在未知因素,购买时建议在本站搜索商家名称,先充分了解商家动态。
交流:唯一投稿邮箱:hostvps@88.com。
注意:部分文章发布时间较长,可能存在未知因素,购买时建议在本站搜索商家名称,先充分了解商家动态。
交流:唯一投稿邮箱:hostvps@88.com。
刷分的单html页面,可加到计划任务了,每天自动刷新1次。
演示:https://bmvps.com/loc.html
把下面的代码存为 loc.html 或者 其他。
全球主机交流论坛 - 在线刷分
html, body {
width: 100%;
height: 100%;
overflow-x: hidden;
}
body {
margin: 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft Yahei", "WenQuanYi Micro Hei", sans-serif;
background-color: #fdf6e3;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
div {
position: fixed;
top: 0;
width: 100%;
height: 100%;
z-index: 100;
}
h1 {
text-align: center;
}
img {
width: 1px;
height: 1px;
}
正在刷分
双击页面访问论坛
//document.oncontextmenu = function () { return false; };
//document.onkeydown = function () { return false; };
var maxUserId = 30000;
div = document.createElement("div");
div.id = "app";
document.body.appendChild(div);
document.getElementById("app").ondblclick = function () {
window.open("http://www.hostloc.com/");
};
for (var i = 0; i < 20; i++) {
setTimeout(function () {
addContent(Math.ceil(Math.random() * maxUserId));
}, i * 100 + 500);
}
setTimeout(function () {
document.getElementsByTagName("h1")[0].innerHTML = "完成!";
}, 2000);
function addContent(userId) {
img = document.createElement("img");
img.src = "http://www.hostloc.com/space-uid-" + userId + ".html";
document.body.appendChild(img);
}