Added image preloader function

This commit is contained in:
Aroy-Art 2021-09-03 09:50:20 +02:00
parent d923e91338
commit 54c3320fa9

View file

@ -6,6 +6,14 @@ $(window).on('load', function () {
$('.preloader').fadeOut(100);
});
/* ========================================================================= */
/* Image Preloader
/* ========================================================================= */
function imgIsLoaded(imgElement) {
$(imgElement).addClass("loaded");
$(imgElement).removeClass("unloaded");
}
jQuery(function ($) {
"use strict";