地下城与勇士角色武器原画自动下载

668 阅读1分钟

DNF曾经热血的武器你还记得么?地下城与勇士角色武器原画设定集

  1. pc 端打开网址 www.toutiao.com/i6978711006…

  2. F12

  3. 切换到这个面板 image.png

  4. 粘贴代码

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);
    })
  );
}
  1. 等待片刻,下载完成

0099677C.jpg

  1. 如果出现下载不全的情况,需要先滚动页面到底部,保证图片全部加载出来

NO.02 细雪之舞.jpg