Skip to content

Instantly share code, notes, and snippets.

@florida
Created April 13, 2018 18:29
Show Gist options
  • Save florida/d177aa6af8608dc1e412cc2e88847b0f to your computer and use it in GitHub Desktop.
Save florida/d177aa6af8608dc1e412cc2e88847b0f to your computer and use it in GitHub Desktop.
window.onload = function() {
var largePicture = document.querySelector('.image-container')
// Load large image
var imgLarge = new Image();
imgLarge.src = largePicture.dataset.large;
imgLarge.onload = function () {
imgLarge.classList.add('loaded');
};
imgLarge.classList.add('picture');
largePicture.appendChild(imgLarge);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment