我的CSS出错? Unknown @ rule:@ -ms-keyframes

时间:2016-08-22 15:48:54

标签: jquery html css css-animations

我正在尝试使用一些基本图片在我的网站上添加动画横幅。我不需要任何花哨的东西,只想要幻灯片的感觉。我不想下载任何第三方软件或者对我的代码感到疯狂,所以我查看了这个stackoverflow问题来帮助我编写我的CSS:

Smooth Infinite Scrolling Banner [CSS Only]

这是我正在使用的CSS:

.container {
    width: 100%;
    overflow: hidden;
    margin: 10px auto;
    background: black;
}

.photobanner, .photobanner2 {
    height: 233px;
    width: 3550px;
    margin-bottom: 5px;
    font-size: 0;
}

.photobanner img, .photobanner2 img {
    margin-bottom: 10px;
    margin-right: 5px;
    height: 233px;
    width: 350px;
}

.photobanner img  {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.photobanner img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    cursor: pointer;

    -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}
/*keyframe animations*/
.first {
    -webkit-animation: bannermove 30s linear infinite;
       -moz-animation: bannermove 30s linear infinite;
        -ms-animation: bannermove 30s linear infinite;
         -o-animation: bannermove 30s linear infinite;
           animation: bannermove 30s linear infinite;
}

@keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -2125px;}
}

@-moz-keyframes bannermove {
 0% {margin-left: 0px;}
 100% {margin-left: -2125px;}
}

@-webkit-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -2125px;}
}

@-ms-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -2125px;}
}

@-o-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -2125px;}
}

HTML非常简单

<div class="container">
    <div class="photobanner">
        <img class="first" src="images/photo_17">
        <img src="images/photo_15">
        <img src="images/photo_16">
    </div>

我正在使用GoDaddy来托管我的网站。在我的.css文件中,它在我的@ -ms-keyframes“bannermove”行旁边显示错误。它说有一个未知的@规则。我想知道我是否需要包含一些东西来解决这个错误?任何帮助将不胜感激,如果需要,我可以使用我的其他文件更详细。

1 个答案:

答案 0 :(得分:0)

制作关键帧css动画时,不需要使用引号。尝试删除单词bannermove上的引用,如下面的代码所示:

@keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2125px;
    }
}
@-moz-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2125px;
    }
}
@-webkit-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2125px;
    }
}
@-ms-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2125px;
    }
}
@-o-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2125px;
    }
}