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

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -