I want to change the logo on navigation bar when i scroll the page down.I am using a wordpress 'Striking Multiflex theme" installed
Asked
Active
Viewed 132 times
1 Answers
0
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);
}
})

Parth Mahida
- 604
- 1
- 5
- 19