myvideogamelist.com/resources/assets/demo1/js/custom/landing.js
Jimmy Brancaccio b39ecf1638 Initial Commit
The initial public commit of MVGL website code.
2024-01-14 13:51:43 -06:00

29 lines
619 B
JavaScript
Vendored

"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();
});