This template comes with Spinkit included and prepared for you. Spinkit are simple loading spinners animated with CSS.
SpinKit uses hardware accelerated (translate and opacity) CSS animations to create smooth and easily customizable animations.
Read more about this great plugin at its Repository home.
"use strict";
document.addEventListener("DOMContentLoaded", function () {
function hidePreloader() {
var preloader = document.querySelector(".spinner-wrapper");
preloader.classList.add("opacity-0");
}
setTimeout(function () {
hidePreloader();
}, 2000);
});