Home  >  Q&A  >  body text

css - 请问B站顶部的模糊半透明导航条是怎么实现的呢?

大家讲道理大家讲道理2729 days ago1570

reply all(2)I'll reply

  • PHPz

    PHPz2017-04-17 14:45:08

    Looking at the code, the frosted glass effect is achieved using filter:blur plus background-image.

    For specific methods, please refer to this article

    reply
    0
  • PHP中文网

    PHP中文网2017-04-17 14:45:08

    background-color: rgba(255,255,255,0.4);
    代码里生效的属性是这么写的。
    filter:blur(5px);

    reply
    0
  • Cancelreply