javascript - Change logo on navigation bar onscroll in striking multiflex theme -
i want change logo on navigation bar when scroll page down.i using wordpress 'striking multiflex theme" installed
you can use jquery $(window).scroll() event handler
$(window).scroll(function(){ var height = $(window).height(); var url = 'url new image'; if(height > 100){ $('.site-logo').attr('src',url); } })
Comments
Post a Comment