Project upload

This commit is contained in:
2022-04-24 03:02:39 -05:00
parent 92c64c30fe
commit c2ce33c3fb
71 changed files with 20006 additions and 0 deletions

25
js/components/wow.js Executable file
View File

@@ -0,0 +1,25 @@
// Wow
var Wow = function() {
"use strict";
// Handle Wow
var handleWow = function() {
var wow = new WOW({
boxClass: 'wow', // animated element css class (default is wow)
offset: 0, // distance to the element when triggering the animation (default is 0)
mobile: false, // trigger animations on mobile devices (true is default)
tablet: false // trigger animations on tablet devices (true is default)
});
wow.init();
}
return {
init: function() {
handleWow(); // initial setup for counter
}
}
}();
$(document).ready(function() {
Wow.init();
});