问题CSS样式记录
keyframes
主要是这个动画的问题,删除就完事了。
@keyframes bounce-up {
    25% {
        transform: translateY(3px);
    }
    50%,100% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-3px);
    }
}
.c_slide .bd .item .tag:hover span,.animate-bounce-up {
    -webkit-animation: bounce-up 1s linear infinite;
    animation: bounce-up 1s linear infinite;
}