add asentus template

This commit is contained in:
2024-05-21 05:13:26 +02:00
parent d902ea6add
commit 2bcf4fe852
114 changed files with 33775 additions and 0 deletions

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