Showing 1 – 1 of 1 replies
tristenps

I've been working with this template […]

tristenps
5 years ago
Hey all,

I've been working with this template for the last two weeks and wanted to let you know that the way you currently invoke the Wow animations isn't working and requires a different method. Luckily I had two templates so I cross referenced the other to get the animations to start appearing again but for some reason the original Vitality.js file wouldn't allow the animations to go through, you can even see it in the live preview now.

I ended up having to erase the original snippet and add the following within the main js section:

$(document).ready(function () {
init_wow();
});
function init_wow() {
$(function () {
var wow = new WOW({
boxClass: 'wow',
animateClass: 'animated',
offset: 90,
mobile: false,
live: true
});
wow.init();
});
}

Hope that helps!
BlackrockDigital
3 years ago
Thanks for sharing this with folks!