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); } })