您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)CSS粘性定位position sticky用法詳解的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。
sticky
css屬性position為sticky的元素,根據(jù)正常的文檔流(flow of the document)進(jìn)行定位,然后相對(duì)它的最近滾動(dòng)祖先(nearest scrolling ancestor)和 containing block (最近塊級(jí)祖先 nearest block-level ancestor),包括table-related元素,基于top, right, bottom, 和 left的值進(jìn)行偏移。該偏移量不會(huì)影響任何其他元素的位置。
sticky元素總是創(chuàng)建一個(gè)新的層疊上下文(stacking context) ,一個(gè)sticky元素會(huì)“固定”在離它最近的一個(gè)擁有“滾動(dòng)機(jī)制”的祖先上(當(dāng)該祖先的overflow 是 hidden, scroll, auto, 或 overlay時(shí)),即便這個(gè)祖先不是最近的真實(shí)可滾動(dòng)祖先。(Github issue on W3C CSSWG)
下面看一個(gè)關(guān)于粘性定位元素滑動(dòng)時(shí)的效果圖。
可以看到list在向上滑動(dòng)時(shí),當(dāng) list item 17 stickyTop 滑到在滾動(dòng)塊的頂部時(shí),便粘在頂部不在跟著滑動(dòng),其余元素繼續(xù)滑動(dòng),該元素的偏移量 top 為0。當(dāng)list向下滑動(dòng)式 list item 24 stickyBottom 滑到底部時(shí)便粘在底部,其余元素繼續(xù)滑動(dòng),該元素的偏移量 bottom 為0。
list item 17 stickyTop 和 list item 24 stickyBottom 的css屬性如下:
// list item 17 stickyTop { position: sticky; top: 0; background: aqua; } // list item 24 stickyBottom { position: sticky; bottom: 0; background: aqua; }
修改偏移量后再次嘗試
list item 17 stickyTop 和 list item 24 stickyBottom 的css屬性如下:
// list item 17 stickyTop { position: sticky; top: 30px; background: aqua; } // list item 24 stickyBottom { position: sticky; bottom: 40px; background: aqua; }
修改之后,17 在滑動(dòng)時(shí)粘在距離頂部30px的位置,24 粘在距離底部40px的位置。
import React from 'react'; import classnames from 'classnames'; import styles from './dashboard.less'; const arr = new Array(40).fill({}); const list = arr.map((val, idx) => { if (idx === 17) { return { ...val, key: idx, title: 'stickyTop', sticky: true, className: styles.stickyTop, }; } if (idx === 24) { return { ...val, key: idx, title: 'stickyBottom', sticky: true, className: styles.stickyBottom, }; } return { ...val, key: idx }; }); export default () => { return (); };{list.map((v, index) => ({`list item ${index} ${v.title || ''}`}))}
.container { width: 400px; height: 500px; margin: auto; overflow: auto; background: aquamarine; .wrap { display: flex; height: 1000px; .list { width: 240px; height: 360px; margin: auto; overflow: auto; background: #fff; .item { color: #333; font-size: 16px; } .sticky { background: aqua; } .stickyTop { position: sticky; top: 0; } .stickyBottom { position: sticky; bottom: 0; } } } }
感謝各位的閱讀!關(guān)于CSS粘性定位position sticky用法詳解就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。