如何在CSS3中仅为2的背景设置动画?

时间:2012-12-20 23:26:41

标签: html css3

大家好,我有 CSS样式

body { 
    width:100%;
    height:100%; 
    background:#fff;
    background-image: url(bg.png), url(clouds.png);
    background-repeat: repeat;
    font-family: tahoma;
    font-size: 14px;
    margin:0;
}

@-webkit-keyframes float {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1200px 0;
    }
}

@media only screen and (min-device-width: 1024px) {
    body {
      -webkit-animation-name: float;
      -webkit-animation-duration: 60s;
      -webkit-animation-iteration-count: infinite;
      -webkit-animation-timing-function: linear;
        -moz-animation-name: float;
        -moz-animation-duration: 60s;
        -moz-animation-iteration-count: infinite;
        -moz-animation-timing-function: linear;
    }
}

此代码动画 bg.png 图片。但我想动画 clouds.png 图片。 我该怎么做才能为 clouds.png 而不是 bg.png 制作动画? :)

1 个答案:

答案 0 :(得分:0)

更改了此内容: background-image: url(bg.png), url(clouds.png);

在此: background-image: url(clouds.png), url(bg.png);