溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CSS粘性定位position sticky用法詳解

發(fā)布時(shí)間:2020-11-10 17:33:57 來(lái)源:億速云 閱讀:778 作者:小新 欄目:web開(kāi)發(fā)

這篇文章給大家分享的是有關(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)

實(shí)際效果展示

下面看一個(gè)關(guān)于粘性定位元素滑動(dòng)時(shí)的效果圖。
CSS粘性定位position sticky用法詳解

可以看到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;
}

修改偏移量后再次嘗試
CSS粘性定位position sticky用法詳解
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的位置。

應(yīng)用場(chǎng)景

  • 長(zhǎng)列表滑動(dòng)時(shí),最近子標(biāo)題固定(粘在)頂部
  • 表格的表頭、首行、首列、末列滑動(dòng)時(shí)分別固定頂部、頂部、左側(cè)、右側(cè)
  • 頁(yè)面滑動(dòng)時(shí),重要信息塊粘在頂部
  • 頁(yè)面滑動(dòng)時(shí),特定元素始終保持在頁(yè)面之內(nèi)。

Note

  • 注意分清粘性定位的作用域,層疊上下文,避免因多個(gè)滾動(dòng)塊或者滾動(dòng)塊層級(jí)有誤造成未達(dá)到目標(biāo)效果

案例代碼

jsx

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 || ''}`}            
         ))}        
     
   
 ); };

less

.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ò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI