如何构建类似推特的半透明背景叠加层



我指的是Twitter页面主要内容周围的半透明白色边框。它是一直延伸到标题的白色边框。

只是想知道是否有人有一个方便玩的快速演示。

最新的推特更新使它,所以只有以下才能让你的推特变得透明......http://userstyles.org/styles/75782/newtwitter-semi-transparent-stream-and-dash-v0-2

你可以

用css3来做到这一点。制作一个div:

<div class="container transparent">
  Your content
</div>

然后在您的样式表中(现已修复):

.transparent {
    background: rgba(255,255,255,.5);
}

不过,查看该Twitter页面的来源,看起来他们使用了透明的png:

background: url(https://si0.twimg.com/a/1339096274/t1/img/wash-white-30.png);

最新更新