Skip to content

Instantly share code, notes, and snippets.

@nyawach
Created August 16, 2019 07:56
Show Gist options
  • Save nyawach/b62cccf8edffaf5bef3312cd881bbc8e to your computer and use it in GitHub Desktop.
Save nyawach/b62cccf8edffaf5bef3312cd881bbc8e to your computer and use it in GitHub Desktop.
画像の読み込みやるやつ最小版
const loadImage = (src) => new Promise((resolve, reject) => {
const img = new Image()
img.onload = () => resolve(img)
img.onerror = reject
img.src = src
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment