Skip to content

Instantly share code, notes, and snippets.

@webjp1
Created January 9, 2020 06:53
Show Gist options
  • Save webjp1/984fd30ca14adef0a9416054688b3a19 to your computer and use it in GitHub Desktop.
Save webjp1/984fd30ca14adef0a9416054688b3a19 to your computer and use it in GitHub Desktop.
$('.viewportWatcherExampleTrigger').viewportWatcher(function() {
// Element is in the Viewport Do Something
$(this).find('.viewportWatcherExample').fadeIn('slow');
}, function() {
// Element is out of the Viewport Do Other Thing
let display = $(this).css('display');
if (display != "none") {
$(this).find('.viewportWatcherExample').fadeOut('fast');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment