gpt4 book ai didi

html - 背景图像上的 Css 动画在 Chrome 中不起作用

转载 作者:可可西里 更新时间:2023-11-01 12:48:47 26 4
gpt4 key购买 nike

请告诉 chrome 的过渡/动画属性不同?还是我做错了什么?

: Fiddle

 @-webkit-keyframes water 
{ 0% {background-position: 0 0;}
100% {background-position: 100000% 0;}
}
@keyframes water {
0% {background-position: 0 0;}
100% {background-position: 100000% 0;}
}

已解决:http://jsfiddle.net/aradhayaKansal/7cgkj/3/ !感谢外星人先生

最佳答案

你忘记了 -webkit-animation: water 5000s linear infinite; 以及 -webkit-animation: flow 5000s linear infinite; for webkit 同样,chrome 需要它们,你可以查看 this

enter image description here

Demo

#waterfall { 
/* Other properties */
-webkit-animation: flow 5000s linear infinite; /* <--- Here */
animation: flow 3s forwards linear normal;
}

#water {
/* Other properties */
-webkit-animation: water 5000s linear infinite; /* <---- here */
animation: water 5000s linear infinite;
}

Note: Just make sure you use -moz- as well...

关于html - 背景图像上的 Css 动画在 Chrome 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21017408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com