0
你好,我想用固定的內容製作頁面,像這邊滾動背景http://hellomonday.com/如何製作它?我想讓頁面具有固定內容並滾動背景?
你好,我想用固定的內容製作頁面,像這邊滾動背景http://hellomonday.com/如何製作它?我想讓頁面具有固定內容並滾動背景?
您需要使用「position」屬性並將其設置爲「fixed」。 這裏是一個例子。
<div style="width:200px; height:200px; border:1px solid; overflow:scroll;">
<div style = "width:180px; height:50px; border: 1px solid; position:fixed;">
abc
</div>
<div style = "width: 180px; height:250px; border: 1px solid; margin-top:60px;">
123
</div>
</div>
檢查該網站的'視圖source'並試圖模仿相同;-) –
這有可能只是與CSS來做到這一點。選中此項:https://codyhouse.co/gem/alternate-fixed-scroll-backgrounds/ – Andurit