使背景淡出/淡入

发布于 2024-12-07 13:56:55 字数 140 浏览 3 评论 0原文

有什么方法可以使用 CSS3 淡入和淡出

的纯白色背景吗? 内容应该保持可见,因此只有背景应该褪色。

使用 css3 过渡/变换有什么想法吗?

感谢您的帮助。

Is there any way I can use CSS3 to fade in and out a solid white background of a <div>?
the content should remain visible so just the background should fade.

Any ideas using css3 transitions/transforms?

thank you for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

永不分离 2024-12-14 13:56:55

当然,您可以直接在 background-colortransition 属性 code>:

div {
   background-color: white;    

   /* transition the background-color over 1s with a linear animation */
   transition: background-color 1s linear;
}

/* the :hover that causes the background-color to change */
div:hover {
   background-color: transparent;      
}

这是红色背景在:hover上淡出的示例

Sure, you can use the transition property directly on the background-color:

div {
   background-color: white;    

   /* transition the background-color over 1s with a linear animation */
   transition: background-color 1s linear;
}

/* the :hover that causes the background-color to change */
div:hover {
   background-color: transparent;      
}

Here's an example of a red background fading out on :hover.

孤独岁月 2024-12-14 13:56:55

您可能会发现这对于图像和背景颜色淡入淡出的示例很有用:-
http://nettuts.s3.amazonaws.com/581_cssTransitions/demos.html

然而,使用 CSS 3 进行转换会限制不支持它的浏览器的效果。

You may find this useful for examples of image and background color fades: -
http://nettuts.s3.amazonaws.com/581_cssTransitions/demos.html

However using CSS 3 to do the transition will limit the effect to browsers that don't support it.

我做我的改变 2024-12-14 13:56:55

您可以在一个容器 div 中包含两个 div。第一个 div 包含白色背景,第二个 div 获取内容。

然后,使用 CSS3 变换将第一个 div 的不透明度设置为零。

You could have two divs in one container div. The first div contains the white background, the second one gets the content.

Then, use a CSS3 transform to animate the opacity of the first div to zero.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文