久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线

Discuz! 官方交流社區(qū)

標(biāo)題: 純css滾動進(jìn)度條,橫向進(jìn)度條隨著頁面滾動而變化 [打印本頁]

作者: gzwnzss    時(shí)間: 2021-2-7 21:15
標(biāo)題: 純css滾動進(jìn)度條,橫向進(jìn)度條隨著頁面滾動而變化
效果如下:
(, 下載次數(shù): 27)
鼠標(biāo)往下移動就會變化
  1.     <style>
  2.         body {
  3.             background-image: linear-gradient(to top right, #32a6ff 50%, #fff 50%);
  4.             background-size: 100% calc(100% - 100vh + 5px);
  5.             background-repeat: no-repeat;
  6.         }

  7.             body::after {
  8.                 content: '';
  9.                 position: fixed;
  10.                 top: 3px;
  11.                 bottom: 0;
  12.                 left: 0;
  13.                 right: 0;
  14.                 background: #fff;
  15.                 z-index: -1;
  16.             }
  17.     </style>
復(fù)制代碼







歡迎光臨 Discuz! 官方交流社區(qū) (http://www.9999xn.com/) Powered by Discuz! W1.0