Skip to content

Instantly share code, notes, and snippets.

View ByYogi's full-sized avatar
🇨🇳

Yogi ByYogi

🇨🇳
  • Sabre
  • Shanghai
  • 06:11 (UTC +08:00)
View GitHub Profile
@ByYogi
ByYogi / 浏览器隐藏所有图片.js
Created October 14, 2024 12:19
浏览器隐藏所有图片
//放控浏览器制台把图片全都隐藏,适合摸鱼
const imgArr = document.querySelectorAll('img')
imgArr.forEach(item=>{
item.style.display = 'none'
})