您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何實現(xiàn)footer定位頁面底部的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
代碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>footer定位</title> <style> *{ margin:0; padding: 0; } .box{ width: 100%; height:300px; background: pink; margin-bottom: 30px; } .footer{ background: red; width: 100%; height:30px; } </style> </head> <body> <div class="main"> <!--頭部開始--> <div class="box"> </div> </div> <!--底部--> <div class="footer"> </div> <script type="text/javascript" src='http://libs.baidu.com/jquery/2.0.0/jquery.js'></script> </body> </html> <script> $(document).ready(function () { var theWindow = $(window); function resized() { var windowSize=window.devicePixelRatio; if(windowSize==1){ var hg2 = $(window).height(); var main = $('.main').outerHeight(); var hg4 = $('.footer').outerHeight(); var hg=hg2-hg4 if( hg > main){ $('.footer').css({"position":'fixed','bottom':0,'left':0,"z-index":999,"width":"100%"}); }else{ $('.footer').css({"position":'static'}); } }else{ $('.footer').css({"position":'static'}); } } theWindow.resize(function () { resized(); }).trigger('resize'); }); </script>
感謝各位的閱讀!關于“如何實現(xiàn)footer定位頁面底部”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。