當第一次接觸到 position:sticky
這個屬性,我就意識到之前的不少 js 場景可以用這個 css 屬性去改寫。譬如 網站 右邊的不少廣告,滾動上去後需要 fixed,完全就是 sticky 的應用啊。
今天要說的是文章詳情頁右側的目錄欄,當頁面下滑的時候,它也會固定到頁面頂部,之前是用js 去監聽scroll 事件,然後根據位置進行判斷,toggle fixed 的方案,出於一些原因,決定對它用sticky 去重寫。
幾次就寫完了,去掉滾動事件監聽,然後將選單元素.post-nav
加上position:sticky; top:0
樣式,但是,不起效!
wtf! 百思不得其解,我開始搜尋原因。在 so 搜到了 這個,說到可能是元素的父級元素有對 overflow 屬性進行處理,比如加了什麼 overflow:hidden
啥的,但是看了下,並沒有這種情況。
然後我猜想會不會是bootstrap 佈局的問題(事實上確實有關係),寫下demo:
<!DOCTYPE html> <html> <head> <title></title> <link href="//cdn.bootcss.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet"> <style> body {font-size: 50px; font-weight: 900;} .main {height: 2000px; background: #eee} .menu {height: 200px; background: yellow} .ad {height: 200px; background: red; position: sticky; top: 0px;} .guess {height: 200px; background: blue;} </style> </head> <body> <p class="container"> <p class="row"> <p class="col-md-8 main">content</p> <p class="col-md-4"> <p class="menu">menu</p> <p class="ad">ad</p> <p class="guess">others</p> </p> </p> </p> </body> </html>
但是沒問題,突然想到網站用的bootstrap 版本是3. x,然後改成3.3.7 的版本,這時候問題就出來了。
這時候問題就比較好定位了,4.x 用的是 flex 佈局,而 3.x 還是 float 浮動佈局,問題應該是出在這裡了。
最終程式碼(參考這個issue):
<!DOCTYPE html> <html> <head> <title></title> <link href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> <style> body {font-size: 50px; font-weight: 900;} .main {height: 2000px; background: #eee} .side {height: 2000px;} .menu {height: 200px; background: yellow} .ad {height: 200px; background: red; position: sticky; top: 0px;} .guess {height: 200px; background: blue;} </style> </head> <body> <p class="container"> <p class="row"> <p class="col-md-8 main">content</p> <p class="col-md-4 side"> <p class="menu">menu</p> <p class="ad">ad</p> <p class="guess">others</p> </p> </p> </p> </body> </html>
對應到開始的問題上,因為menu 是屬於.col-md-3
元素的,所以右邊的.col-md-3
需要和左邊的.col-md-9
保持高度一致即可,加上這行程式碼:
$('.side').height($('.main').height())
因為左邊的內容區域有圖片的延遲加載,所以這行程式碼需要持續執行:
$(window).scroll(function() { $('.side').height($('.main').height()) // other code // ... })
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。更多相關教學請造訪 HTML影片教學!
相關推薦:
#以上是當 position:sticky 遇到 bootstrap 浮動佈局時候的踩坑記錄的詳細內容。更多資訊請關注PHP中文網其他相關文章!