我正在使用的代码是这个
background: url(bilder/cover.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
我想要完成的是,背景图像在 2 秒后更改为背景图像,然后保持不变。
我知道有 Jqueries 可以改变这样的背景,但我不确定如何使用我正在使用的代码来制作类似的东西!如果有人对此有解决方案,那就太棒了!
我改变背景的出发点是我在 w3schools 上找到的代码:
{
width:100px;
height:100px;
background:red;
animation:myfirst 5s;
-webkit-animation:myfirst 5s; /* Safari and Chrome */
}
@keyframes myfirst
{
from {background:red;}
to {background:yellow;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {background:red;}
to {background:yellow;}
}