国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Web 組件化中如何管理 z-index

FrancisSoung / 3334人閱讀

摘要:接著我們解釋我們所看到的現象。刪除上述所說的運行效果這種架構并非沒有缺點。例如,你將無法在和內創建此類疊加層查看示例然而,根據我的經驗,這很少是一個問題。找到兩個沒有正確層疊的元素的第一個祖先組件,并根據需要更改該組件中的。

想閱讀更多優質文章請猛戳GitHub博客,一年百來篇優質文章等著你!

z-index 屬性,盡管已經寫了這么多,仍然被廣泛地誤解和錯誤地處理。在復雜的單頁web應用程序中堆積問題可能會成為一個主要問題。然而,堅持一些原則,我們可以很容易地避免這些問題。

如果你有過任何復雜的Web UI開發,那么你可能有些時候會瘋狂地嘗試將元素的 z-index 設置為上千或者很大的一個數,卻發現它不能幫助你把它放在其他元素之上,這些元素的z-index更低,甚至根本沒有定義。

為什么會這樣?更重要的是,如何避免這些問題?

在本文中,我將講述z-index實際上是什么,以及如何停止猜測它是否適用于任何特定的情況,并開始像對待任何其他方便的工具一樣對待它。

層疊上下文的層次結構

如果你把網頁想象成三維的,那么z-index是定義了一個元素的z坐標(也稱為它的層疊順序)屬性:值越大,元素離觀察者越近。你也可以將它看作是影響繪制順序的屬性,因為屏幕是由像素組成的二維網格。因此,z-index 值越大,元素在頁面上繪制的時間就越晚。

然而,一個主要的復雜因素是 z-index 值空間不平 - 它是分層的。 元素可以創建層疊上下文,該上下文成為其后代的z-index值的根。 接著通過一個例子來解釋層疊上下文的概念。

文檔正文有五個div節點:div1div2div3div1-1div2-1。 它們都是絕對定位的并且彼此重疊。 div1-1div1的子節點,div2-1div2的子節點。

html

</>復制代碼

  1. div1

  2. (z-index: auto)
  3. div1-1

  4. (z-index: 10)
  5. div2

  6. (z-index: 1)
  7. div2-1

  8. (z-index: 10)
  9. div3

  10. (z-index: 2)
css

</>復制代碼

  1. div {
  2. box-sizing: border-box;
  3. border: 1px solid black;
  4. padding: 5px;
  5. position: absolute;
  6. font-family: Verdana;
  7. }
  8. .div1, .div2, .div3 {
  9. width: 500px;
  10. height: 200px;
  11. }
  12. .div1-1, .div2-1 {
  13. width: 200px;
  14. height: 150px;
  15. }
  16. .div1 {
  17. left: 10px;
  18. top: 10px;
  19. background-color: rgba(220, 220, 170, 0.9);
  20. }
  21. .div1-1 {
  22. left: 250px;
  23. top: 30px;
  24. background-color: rgba(220, 170, 170, 0.9);
  25. z-index: 10;
  26. }
  27. .div2 {
  28. left: 20px;
  29. top: 90px;
  30. background-color: rgba(220, 170, 220, 0.9);
  31. z-index: 1;
  32. }
  33. .div2-1 {
  34. left: 120px;
  35. top: 30px;
  36. background-color: rgba(170, 220, 170, 0.9);
  37. z-index: 10;
  38. }
  39. .div3 {
  40. left: 30px;
  41. top: 170px;
  42. background-color: rgba(170, 220, 220, 0.9);
  43. z-index: 2;
  44. }

接著我們解釋我們所看到的現象。這里有詳細繪制順序,但這里我們只需要比較兩件事。

z-index 值

如果元素具有更高的z-index,則繪制會比值小的晚。

樣式資源順序

如果 z-index 值相同,那么在樣式文件中出現越靠后,繪制越晩。

因此,根據我們的 CSS 文件,如果我們不考慮層疊上下文,順序應該如下:

div1

div2

div3

div1-1

div2-1

注意,div2-1 實際上位于 div3 后面的,為什么會這樣?

</>復制代碼

  1. 注意:z-index 值為 auto 不會創建一個 層疊上下文

如果一個元素要創建一個層疊上下文,它會為其子元素的 z-index值創建一個地基或者局部框,因此在確定繪制順序時,它們永遠不會與層疊上下文之外的任何內容進行比較。 換句話說,當一個創建層疊上下文的元素被繪制時,這個元素下的的所有子元素都在它之后和它的任何兄弟之前繪制。

回到示例,body 后代div的實際繪制順序是

div1

div2

div3

div1-1

注意列表中沒有 div2-1,它是div2的一個子元素,它創建了一個層疊上下文(因為它是一個絕對定位的元素,除了auto的默認值之外,它還有z-index),所以它是在div2之后繪制的,但在div3之前。

div1 沒有創建層疊上下文,因為它的z-index 值為 auto,所以在div2div3之后繪制div1-1(div1的子元素,因為div1-1z-index 值為 10 大于 div2div3

如果你沒有看懂,請不要擔心。以下是一些資源可以更好地解釋這些概念:

“The Stacking Context” MDN 文檔

“What No One Told You About Z-Index” Philip Walton

然而,本文的重點是,當頁面由數十個和數百個組件組成時,如何處理z-index,每個組件都可能定義了z-index的子組件。

關于z-index 最流行的一篇文章建議將所有z-index值分組在一個地方,但是如果這些值不屬于相同的層疊上下文(在大型應用程序中可能不容易實現),那么比較這些值就沒有意義了。

這里一個例子。 假設我們有一個包含 headermain 部分的頁面。 由于某種原因,main 里面內容樣式必須設置:position: relativez-index: 1

</>復制代碼

  1. // html
  2. Header
  3. Main Content


</>復制代碼

  1. // css
  2. body {
  3. margin: 0;
  4. font-family: Verdana;
  5. text-align: center;
  6. background-color: white;
  7. }
  8. div {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .header {
  14. background-color: rgba(255, 255, 220, 0.5);
  15. font-size: 10vmin;
  16. position: relative;
  17. height: 30vh;
  18. }
  19. .main {
  20. background-color: rgba(220, 255, 255, 0.5);
  21. font-size: 10vmin;
  22. height: 70vh;
  23. position: relative;
  24. z-index: 1;
  25. }

運行效果:

查看示例

在這里使用的是組件體系結構,所以根組件和每個子組件的 CSS 都是在專用部分中定義的。實際上,組件將駐留在多帶帶的文件中,并且標記將使用你選擇的 JavaScript 庫(如React)生成,但出于演示目的,將所有內容放在一起也沒有問題。

現在,假設我們的任務是在header中創建一個下拉菜單。當然,它必須位于main上面,所以我們給它一個z-index:10

</>復制代碼

  1. // html
  2. Header
  3. Overlay
  4. Main Content


</>復制代碼

  1. // css
  2. body {
  3. margin: 0;
  4. font-family: Verdana;
  5. text-align: center;
  6. background-color: white;
  7. }
  8. div {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .header {
  14. background-color: rgba(255, 255, 220, 0.8);
  15. font-size: 10vmin;
  16. position: relative;
  17. height: 30vh;
  18. }
  19. .overlay {
  20. position: absolute;
  21. z-index: 10;
  22. background-color: rgba(255, 220, 255, 0.8);
  23. left: 10vw;
  24. top: 25vh;
  25. width: 50vw;
  26. height: 50vh;
  27. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  28. }
  29. .overlay::after {
  30. content: "";
  31. position: absolute;
  32. left: 50%;
  33. transform: translateX(-50%);
  34. bottom: 100%;
  35. width: 0;
  36. height: 0;
  37. border-top: 10px solid transparent;
  38. border-right: 10px solid transparent;
  39. border-left: 10px solid transparent;
  40. border-bottom: 10px solid rgba(255, 220, 255, 0.8);
  41. }
  42. .main {
  43. background-color: rgba(220, 255, 255, 0.8);
  44. font-size: 10vmin;
  45. height: 70vh;
  46. position: relative;
  47. z-index: 1;
  48. }

運行效果:

查看示例

現在,幾個月后,為了讓一些不相關的東西更好地工作,我們需要在 header 樣式多加一個 transform: translateZ(0)

</>復制代碼

  1. // 部分代碼
  2. .header {
  3. background-color: rgba(255, 255, 220, 0.8);
  4. font-size: 10vmin;
  5. position: relative;
  6. height: 30vh;
  7. transform: translateZ(0);
  8. }

如你所見,布局現已被打破。 在沒有z-index規則的情況下,z-index:1的元素位于具有z-index:10的元素的頂部。 原因是header使用transform屬性 它創建了一個層疊上下文,默認會有自己的z-index,值為0 低于 mainz-index (1)

解決方案很簡單:給header一個z-index值為2

</>復制代碼

  1. // 部分代碼
  2. .header {
  3. background-color: rgba(255, 255, 220, 0.8);
  4. font-size: 10vmin;
  5. position: relative;
  6. height: 30vh;
  7. transform: translateZ(0);
  8. z-index: 2;
  9. }

運行效果:

查看示例

問題是,如果我們在組件內的組件中有組件,每個組件具有不同的z-index元素,我們應該怎么做到這個解決方案? 我們如何確保更改 header 的z-index不會破壞其他任何內容?

答案是需要一種協定,消除了猜測的需要,它是這樣的:更改組件內的z-index應該只影響該組件,而不影響其他任何東西。換句話說,在處理某個CSS文件中的z-index值時,理想情況下我們應該只關心該文件中的其他值。

實現它很容易。 我們應該簡單地確保每個組件的根創建層疊上下文。 最簡單的方法是為它提供鵲確切的 positionz-index 的值,而不是使用默認它們自己的默認值。

下面是構建應用程序的一種方法。它使用的元素比前一個多,但是相對額外的DOM元素相關聯的計算來說是很劃算的,節省開發人員在處理層疊上下文問題時間。

</>復制代碼

  1. // html
  2. Header
  3. Overlay
  4. Main Content


</>復制代碼

  1. // css
  2. body {
  3. margin: 0;
  4. font-family: Verdana;
  5. text-align: center;
  6. background-color: white;
  7. }
  8. /* Root styles */
  9. .root__container {
  10. position: relative;
  11. z-index: 0;
  12. }
  13. .root__header {
  14. position: relative;
  15. z-index: 2;
  16. }
  17. .root__main {
  18. position: relative;
  19. z-index: 1;
  20. }
  21. /* Header styles */
  22. .header__container {
  23. background-color: rgba(255, 255, 220, 0.8);
  24. font-size: 10vmin;
  25. position: relative;
  26. height: 30vh;
  27. transform: translateZ(0);
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. z-index: 0;
  32. }
  33. .header__overlay {
  34. position: absolute;
  35. z-index: 1;
  36. background-color: rgba(255, 220, 255, 0.8);
  37. left: 10vw;
  38. top: 25vh;
  39. width: 50vw;
  40. height: 50vh;
  41. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. }
  46. .header__overlay::after {
  47. content: "";
  48. position: absolute;
  49. left: 50%;
  50. transform: translateX(-50%);
  51. bottom: 100%;
  52. width: 0;
  53. height: 0;
  54. border-top: 10px solid transparent;
  55. border-right: 10px solid transparent;
  56. border-left: 10px solid transparent;
  57. border-bottom: 10px solid rgba(255, 220, 255, 0.8);
  58. }
  59. /* Main section styles */
  60. .main__container {
  61. background-color: rgba(220, 255, 255, 0.8);
  62. font-size: 10vmin;
  63. height: 70vh;
  64. display: flex;
  65. align-items: center;
  66. justify-content: center;
  67. position: relative;
  68. z-index: 0;
  69. }

運行效果:

查看示例

header__containermain__container 都有 position: relativez-index: 0

header overlay現有z-index: 1(我們不需要很大的值,因為它只會與 header 中的其他元素進行比較)

root__header 現有z-index: 2,而 root__main 保持其z-index: 1,這就是兩兄弟正確層疊的原因

(還要注意,兩者都有position: relative,因為 z-index 不適用于 position:static的元素。)

如果我們現在查看 header 代碼,我們會注意到我們可以完全從containeroverlay 層中刪除z-index屬性,因為overlay 層是那里唯一定位的元素。 同樣,main container 上不需要z-index。 這樣分類最大好處:在查看z-index時,只注重組件本身,而不是它的上下文。

</>復制代碼

  1. // 刪除上述所說的 z-index
  2. body {
  3. margin: 0;
  4. font-family: Verdana;
  5. text-align: center;
  6. background-color: white;
  7. }
  8. /* Root styles */
  9. .root__container {
  10. position: relative;
  11. z-index: 0;
  12. }
  13. .root__header {
  14. position: relative;
  15. z-index: 2;
  16. }
  17. .root__main {
  18. position: relative;
  19. z-index: 1;
  20. }
  21. /* Header styles */
  22. .header__container {
  23. background-color: rgba(255, 255, 220, 0.8);
  24. font-size: 10vmin;
  25. position: relative;
  26. height: 30vh;
  27. transform: translateZ(0);
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. .header__overlay {
  33. position: absolute;
  34. background-color: rgba(255, 220, 255, 0.8);
  35. left: 10vw;
  36. top: 25vh;
  37. width: 50vw;
  38. height: 50vh;
  39. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. }
  44. .header__overlay::after {
  45. content: "";
  46. position: absolute;
  47. left: 50%;
  48. transform: translateX(-50%);
  49. bottom: 100%;
  50. width: 0;
  51. height: 0;
  52. border-top: 10px solid transparent;
  53. border-right: 10px solid transparent;
  54. border-left: 10px solid transparent;
  55. border-bottom: 10px solid rgba(255, 220, 255, 0.8);
  56. }
  57. /* Main section styles */
  58. .main__container {
  59. background-color: rgba(220, 255, 255, 0.8);
  60. font-size: 10vmin;
  61. height: 70vh;
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. }

運行效果:

這種架構并非沒有缺點。 它以犧牲一些靈活性為代價使應用程序更具可預測性。 例如,你將無法在headermain section內創建此類疊加層:

</>復制代碼

  1. // html
  2. Header
  3. Header Overlay
  4. Main Content
  5. Main Overlay


</>復制代碼

  1. // css
  2. body {
  3. margin: 0;
  4. font-family: Verdana;
  5. text-align: center;
  6. background-color: white;
  7. }
  8. div {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .header {
  14. background-color: rgba(255, 255, 220, 0.8);
  15. font-size: 10vmin;
  16. position: relative;
  17. height: 30vh;
  18. }
  19. .header-overlay {
  20. position: absolute;
  21. z-index: 10;
  22. background-color: rgba(255, 220, 255, 0.8);
  23. left: 2vw;
  24. top: 25vh;
  25. width: 47vw;
  26. height: 50vh;
  27. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  28. }
  29. .header-overlay::after {
  30. content: "";
  31. position: absolute;
  32. left: 50%;
  33. transform: translateX(-50%);
  34. bottom: 100%;
  35. width: 0;
  36. height: 0;
  37. border-top: 10px solid transparent;
  38. border-right: 10px solid transparent;
  39. border-left: 10px solid transparent;
  40. border-bottom: 10px solid rgba(255, 220, 255, 0.8);
  41. }
  42. .main {
  43. background-color: rgba(220, 255, 255, 0.8);
  44. font-size: 10vmin;
  45. height: 70vh;
  46. position: relative;
  47. }
  48. .main-overlay {
  49. position: absolute;
  50. z-index: 10;
  51. background-color: rgba(255, 255, 255, 0.8);
  52. left: 51vw;
  53. bottom: 40vh;
  54. width: 47vw;
  55. height: 50vh;
  56. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  57. }
  58. .main-overlay::after {
  59. content: "";
  60. position: absolute;
  61. left: 50%;
  62. transform: translateX(-50%);
  63. top: 100%;
  64. width: 0;
  65. height: 0;
  66. border-top: 10px solid rgba(255, 255, 255, 0.8);
  67. border-right: 10px solid transparent;
  68. border-left: 10px solid transparent;
  69. border-bottom: 10px solid transparent;
  70. }

查看示例

然而,根據我的經驗,這很少是一個問題。 你可以使用 main section 中的 overlay 層向下而不是向上,以使其不與header相交。 或者,如果你真的需要它,你可以在正文的末尾注入疊加HTML 并給它一個大的 z-index 值(“大”是比頂層其他部分更大)。

再次說明

通過使每個組件的根成為層疊上下文,根據元素的z-index值隔離組件;

如果組件中的元素不需要除auto之外的z-index值,則不必執行此操作;

在組件的 CSS 文件中,可以以你喜歡的方式維護z索引值。它可能是連續的值,或者你可以給它們一個10的步長,或者你可以使用變量——這都取決于你的項目約定和組件的大小。最好只將z-index分配給同級元素。否則,你可能會無意中在一個組件中引入更多的層疊上下文。

調試變得容易。找到兩個沒有正確層疊的元素的第一個祖先組件,并根據需要更改該組件中的z-index

你的點贊是我持續分享好東西的動力,歡迎點贊!

歡迎加入前端大家庭,里面會經常分享一些技術資源。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/104021.html

相關文章

  • Web 件化如何管理 z-index

    摘要:接著我們解釋我們所看到的現象。刪除上述所說的運行效果這種架構并非沒有缺點。例如,你將無法在和內創建此類疊加層查看示例然而,根據我的經驗,這很少是一個問題。找到兩個沒有正確層疊的元素的第一個祖先組件,并根據需要更改該組件中的。 想閱讀更多優質文章請猛戳GitHub博客,一年百來篇優質文章等著你! z-index 屬性,盡管已經寫了這么多,仍然被廣泛地誤解和錯誤地處理。在復雜的單頁web應...

    yeooo 評論0 收藏0
  • 關于 vue 彈窗組件的一些感想

    摘要:最近是用開發了一套組件庫在開發過程對對于組件化的開發有一些感想,于是開始記錄下這些。彈窗組件一直是開發中必備的,使用頻率相當高,最常見的莫過于,,這些曾經我們都會用來調試程序不同的組件庫對于彈窗的處理也是不一樣的。 最近是用 vue 開發了一套組件庫 vue-carbon , 在開發過程對對于組件化的開發有一些感想,于是開始記錄下這些。 彈窗組件一直是 web 開發中必備的,使用頻率相...

    idealcn 評論0 收藏0
  • 前端架構涉及到哪些范圍?

    摘要:前后端都要關注注入攻擊跨站腳本攻擊跨站請求偽造開放重定向這些安全性問題。前端也需要構建自動化測試,包括獨立單元測試和端到端測試自動化,當然還有人工測試。 總體指導思想是前后端分離,后端同事提供線上API數據查詢接口或websocket接口,前端同事負責處理獲取到的數據、編寫展示的頁面、實現用戶交互;前后端都要考慮web開發的安全性問題,表單提交到數據庫前對用戶的輸入進行轉義、登錄避免明...

    dmlllll 評論0 收藏0
  • 前端架構涉及到哪些范圍?

    摘要:前后端都要關注注入攻擊跨站腳本攻擊跨站請求偽造開放重定向這些安全性問題。前端也需要構建自動化測試,包括獨立單元測試和端到端測試自動化,當然還有人工測試。 總體指導思想是前后端分離,后端同事提供線上API數據查詢接口或websocket接口,前端同事負責處理獲取到的數據、編寫展示的頁面、實現用戶交互;前后端都要考慮web開發的安全性問題,表單提交到數據庫前對用戶的輸入進行轉義、登錄避免明...

    kk_miles 評論0 收藏0

發表評論

0條評論

FrancisSoung

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<