【发布时间】:2020-08-13 18:51:01
【问题描述】:
我在 css 中有想要制作动画的背景图片,因此它会在 5 秒后立即出现(没有过渡) CSS:
body {
font-family: 'Roboto', sans-serif;
background-color: #0d0d0d;
color: #dedede;
animation: none;
background:url(img/cat.gif) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}
前台会有一个<table>元素。
【问题讨论】:
标签: html css image background opacity