這篇文章給大家分享的是有關(guān)CSS粘性定位position sticky用法詳解的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)擁有網(wǎng)站維護技術(shù)和項目管理團隊,建立的售前、實施和售后服務體系,為客戶提供定制化的網(wǎng)站制作、成都網(wǎng)站建設、網(wǎng)站維護、西部信息機房解決方案。為客戶網(wǎng)站安全和日常運維提供整體管家式外包優(yōu)質(zhì)服務。我們的網(wǎng)站維護服務覆蓋集團企業(yè)、上市公司、外企網(wǎng)站、商城開發(fā)、政府網(wǎng)站等各類型客戶群體,為全球上千多家企業(yè)提供全方位網(wǎng)站維護、服務器維護解決方案。sticky
css屬性position為sticky的元素,根據(jù)正常的文檔流(flow of the document)進行定位,然后相對它的最近滾動祖先(nearest scrolling ancestor)和 containing block (最近塊級祖先 nearest block-level ancestor),包括table-related元素,基于top, right, bottom, 和 left的值進行偏移。該偏移量不會影響任何其他元素的位置。
sticky元素總是創(chuàng)建一個新的層疊上下文(stacking context) ,一個sticky元素會“固定”在離它最近的一個擁有“滾動機制”的祖先上(當該祖先的overflow 是 hidden, scroll, auto, 或 overlay時),即便這個祖先不是最近的真實可滾動祖先。(Github issue on W3C CSSWG)
下面看一個關(guān)于粘性定位元素滑動時的效果圖。
可以看到list在向上滑動時,當 list item 17 stickyTop 滑到在滾動塊的頂部時,便粘在頂部不在跟著滑動,其余元素繼續(xù)滑動,該元素的偏移量 top 為0。當list向下滑動式 list item 24 stickyBottom 滑到底部時便粘在底部,其余元素繼續(xù)滑動,該元素的偏移量 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 在滑動時粘在距離頂部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 || ''}`}名稱欄目:CSS粘性定位positionsticky用法詳解-創(chuàng)新互聯(lián)
標題來源:http://aaarwkj.com/article48/dpgehp.html成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、定制開發(fā)、面包屑導航、電子商務、品牌網(wǎng)站制作、小程序開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)