DNF曾经热血的武器你还记得么?地下城与勇士角色武器原画设定集
-
pc 端打开网址 www.toutiao.com/i6978711006…
-
按
F12 -
切换到这个面板
-
粘贴代码
Array.from(document.querySelectorAll(".pgc-img img")).forEach((img, index) => {
setTimeout(() => {
downloadImg(img.src, (img.nextSibling.textContent || "三合一") + ".jpg");
}, index * 500);
});
function downloadImg(src, filename) {
fetch(src).then((res) =>
res.blob().then((blob) => {
var a = document.createElement("a");
var url = window.URL.createObjectURL(blob);
a.href = url;
a.download = filename;
a.click();
window.URL.revokeObjectURL(url);
})
);
}
- 等待片刻,下载完成
- 如果出现下载不全的情况,需要先滚动页面到底部,保证图片全部加载出来