web-html5-scripts/cards/extreme-hover/script.js

8 lines
310 B
JavaScript
Raw Normal View History

2020-05-07 20:51:13 +02:00
// Loading Screen
window.addEventListener("load", function(){
let hoverImagesContainer = document.getElementById('imageHover');
let loadingScreen = document.getElementById('loadingScreen');
loadingScreen.style.opacity = '0';
loadingScreen.style.zIndex = '-1';
hoverImagesContainer.style.opacity = '1';
});