jQuery 視窗調整大小事件處理程序
提供的 jQuery 程式碼根據頁面首次載入時的視窗高度修改頁腳元素的樣式。但是,為了確保樣式在視窗調整大小期間動態適應,我們需要將事件偵聽器綁定到視窗調整大小事件。
jQuery 解決方案:
$(window).on('resize', function() { var $containerHeight = $(window).height(); if ($containerHeight <= 818) { $('.footer').css({ position: 'static', bottom: 'auto', left: 'auto' }); } if ($containerHeight > 819) { $('.footer').css({ position: 'absolute', bottom: '3px', left: '0px' }); } });
其他注意事項:
以上是如何使用 jQuery 讓頁尾回應視窗大小調整?的詳細內容。更多資訊請關注PHP中文網其他相關文章!