Get link Facebook X Pinterest Email Other Apps November 30, 2020 GitAdd file git add . hit enterCommitgit commit -m "your local text" hit enterPushgit push origin branch-name hit enter 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