2018-01-17から1日間の記事一覧

jQuery メモ カラー

jQuery(function(){ jQuery(window).scroll(function(){ if(jQuery(window).scrollTop() > 900) { jQuery('.top-content').css('background-color', 'rgba(0,0,0,0.6)'); } else { jQuery('.top-content').css('background-color', 'rgba(255,255,255,0)'); }…