Created
April 13, 2018 18:29
-
-
Save florida/d177aa6af8608dc1e412cc2e88847b0f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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