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

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -