Skip to content

Instantly share code, notes, and snippets.

@niksudan
Created July 23, 2018 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niksudan/bcdbd2f8c83dfc2c4f62a912d4431b80 to your computer and use it in GitHub Desktop.
Save niksudan/bcdbd2f8c83dfc2c4f62a912d4431b80 to your computer and use it in GitHub Desktop.
Preload an image without rendering
const image = new Image();
image.src = 'your-image-url-here';
image.onload = () => {
// Your image has loaded
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment