Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我向下滚动页面时,我想更改导航栏上的徽标。我正在使用安装了 wordpress 的“Striking Multiflex 主题”
您可以使用 jQuery $(window).scroll() 事件处理程序
$(window).scroll(function(){ var height = $(window).height(); var url = 'url to new image'; if(height > 100){ $('.site-logo').attr('src',url); } })