html – CSS Gradient动画无法正常工作

前端之家收集整理的这篇文章主要介绍了html – CSS Gradient动画无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试制作动画CSS渐变背景,我在此页面上为渐变生成CSS: http://www.gradient-animator.com/
这是css:
body {
background: linear-gradient(270deg,#18f0b8,#18a2f0,#db5640);
background-size: 600% 600%;
-webkit-animation: Gradient 60s ease infinite;
-moz-animation: Gradient 60s ease infinite;
animation: Gradient 60s ease infinite;
@-webkit-keyframes Gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes Gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes Gradient { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
}

输出的梯度很好,但它不会生成动画.我错过了什么吗?
这是小提琴:http://jsfiddle.net/9s9g6ktu/

解决方法

是的….你必须关闭你的身体css,并自己拥有你的关键帧动画.喜欢这个 http://jsfiddle.net/9s9g6ktu/1/
原文链接:https://www.f2er.com/html/242433.html

猜你在找的HTML相关文章