Skip to content

Instantly share code, notes, and snippets.

View ByYogi's full-sized avatar
🇨🇳
Blog Coding...

Yogi ByYogi

🇨🇳
Blog Coding...
  • Sabre
  • Shanghai
  • 00:25 (UTC +08:00)
View GitHub Profile
@ByYogi
ByYogi / get_githustart_SVG.md
Last active November 19, 2024 18:02
得到github公开项目的表示stars数量的svg图片

https://img.shields.io/github/stars/[项目路径]?color=1677FF&labelColor=black&style=flat-square

图片

@ByYogi
ByYogi / CodeSanboxDemo.md
Last active November 19, 2024 18:03
CodeSanbox image provide your demo

[![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://[here you code example url])

Edit on CodeSandbox

@ByYogi
ByYogi / 浏览器隐藏所有图片.js
Created October 14, 2024 12:19
浏览器隐藏所有图片
//放控浏览器制台把图片全都隐藏,适合摸鱼
const imgArr = document.querySelectorAll('img')
imgArr.forEach(item=>{
item.style.display = 'none'
})