Skip to main content

Add Class When Visible On Screen

jQuery(document).ready(function($) {

	$(window).on('scroll', function(){
	    if ($(".geo-bck-1").is(':visible')){
	        $(".geo-bck-1").addClass("is-visible");
	    }
	});

});

Comment

Leave a Reply

Your email address will not be published. Required fields are marked *