Gravity form Get link Facebook X Pinterest Email Other Apps May 26, 2021 Add custom script in gform$( document ).on( 'gform_post_render', function () { // code}); Get link Facebook X Pinterest Email Other Apps Comments
Animation js (Alternative wow js) May 11, 2021 function isScrolledIntoView(elem) { let docViewTop = $(window).scrollTop(); let docViewBottom = docViewTop + $(window).height(); let elemTop = $(elem).offset().top; let elemBottom = elemTop + $(elem).height(); return ((elemTop <= docViewBottom) && (elemBottom >= docViewTop)); } $('.animate').each(function() { if (isScrolledIntoView(this) === true) { let animation = $(this).attr('data-animation'); let iteration = $(this).attr('data-iteration'); let duration = $(this).attr('data-duration'); let delay = $(this).attr('data-delay'); $(this).addClass('animated'); $(this).css({ 'visibility': 'visible', 'animation-duration': duration, ... Read more
Comments
Post a Comment