myvideogamelist.com/resources/assets/demo1/js/custom/landing.js

30 lines
619 B
JavaScript
Raw Normal View History

"use strict";
// Class definition
var KTLandingPage = function () {
// Private methods
var initTyped = function() {
var typed = new Typed("#kt_landing_hero_text", {
strings: ["The Best Theme Ever", "The Most Trusted Theme", "#1 Selling Theme"],
typeSpeed: 50
});
}
// Public methods
return {
init: function () {
//initTyped();
}
}
}();
// Webpack support
if (typeof module !== 'undefined') {
module.exports = KTLandingPage;
}
// On document ready
KTUtil.onDOMContentLoaded(function() {
KTLandingPage.init();
});