17

可能重复:
是否可以对 HTML 元素的不透明度进行分级?

我正在尝试使用 css 让 div(及其边框和内容)淡入透明(即顶部为实心,底部为透明)。

有没有办法做到这一点?

我已经能够使用以下方法淡出背景:

.fade-to-nothing
{
    background-image: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: linear-gradient(to bottom, rgba(255,255,255,1),rgba(255,255,255,0));
    background-repeat: repeat-x;
}

但也无法找到一种方法来处理 div 的内容/边框。也许有某种嵌套或覆盖?

编辑 继承人我正在尝试做的事情:

在此处输入图像描述

4

2 回答 2

27

在这里引用我的回答

检查这个工作演示,并尝试添加/删除内容#contents

HTML

<div id="container">
    <div id="contents">
        Some contents goes here
    </div>
    <div id="gradient">
    </div>
</div>

CSS

#container {
    position:relative;
}
#contents {
    background:red;
}
#gradient {
    position:absolute;
    z-index:2;
    right:0; bottom:0; left:0;
    height:200px; /* adjust it to your needs */
    background: url(data:image/svg+xml;base64,alotofcodehere);
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(70%,rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%);
    background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%);
    background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%);
}​

这几乎适用于任何支持不透明度的浏览器(包括 IE9),这是 IE8“rgba”后备(未经测试):

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );

要生成您自己的渐变,请访问Colorzilla

第一个站点 (0%) 的不透明度必须为 0 ( rgba(255,255,255,0);),然后是 70% 左右 - 做一些测试以找到对您有好处的 - 添加另一个不透明度为 1 ( rgba(255,255,255,1);) 的站点。

于 2012-10-08T10:30:57.563 回答
1

如果你知道你可以利用这些知识来发挥你的优势的高度,你总是可以从 js 更新它,但这对我来说似乎比定义无数渐变更简单http://jsfiddle.net/6cXRZ/4/你可以调整你的参数隐藏你喜欢多少

于 2012-10-08T10:46:33.420 回答