Change logo on navigation bar onscroll in striking multiflex theme

144 Views Asked by At

I want to change the logo on navigation bar when i scroll the page down.I am using a wordpress 'Striking Multiflex theme" installed

1

There are 1 best solutions below

0
On

You can use jQuery $(window).scroll() event handler

$(window).scroll(function(){
        var height = $(window).height();
        var url = 'url to new image';
        if(height > 100){
           $('.site-logo').attr('src',url);  
        }

    })