使背景淡出/淡入
有什么方法可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然,您可以直接在
background-colortransition 属性 code>:
这是红色背景在
:hover
上淡出的示例。Sure, you can use the transition property directly on the
background-color
:Here's an example of a red background fading out on
:hover
.您可能会发现这对于图像和背景颜色淡入淡出的示例很有用:-
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.
您可以在一个容器 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.