Fetch the repository succeeded.
//当打开html自动调用
window.onload = function() {
//调用随机函数
loadRandomImage();
}
//函数
function loadRandomImage() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
//始终进行
if (xhttp.status === 200) {
//将所有图片url放入imageUrls当中
var imageUrls = this.responseText.split("\n");
//实现随机访问
var randomIndex = Math.floor(Math.random() * imageUrls.length);
//实现额面跳转
window.location.href="https://i.imgtg.com/" + imageUrls[randomIndex] + ".jpg";
}
else{
console.log("图片文件状态异常,可联系foryouos@qq.com")
}
};
//打开文件
xhttp.open("GET", "photos_urls.txt", true);
xhttp.send();
}
}
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。