CSS Webkit颜色过渡循环

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS Webkit颜色过渡循环相关的知识,希望对你有一定的参考价值。

body, #logo h1 a, ul#menu li.on {background-color: #39f !important;}
@-webkit-keyframes colours {
	  0% {background-color: #39f;}
	 15% {background-color: #8bc5d1;}
	 30% {background-color: #f8cb4a;}
	 45% {background-color: #95b850;}
	 60% {background-color: #944893;}
	 75% {background-color: #c71f00;}
	 90% {background-color: #bdb280;}
	100% {background-color: #39f;}
}
body, #logo h1 a, ul#menu li.on {
	-webkit-animation-direction: normal;
	-webkit-animation-duration: 60s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-name: colours;
	-webkit-animation-timing-function: ease;
}

以上是关于CSS Webkit颜色过渡循环的主要内容,如果未能解决你的问题,请参考以下文章

css如何实现颜色的过渡效果

CSS3颜色过渡在Chrome中不起作用

如何获取 Chrome / WebKit 中过渡的元素的当前颜色?

Webkit 浏览器中的 CSS 过渡填充故障

如何在 CSS 过渡期间防止 Webkit 文本呈现变化

如何在 CSS 过渡期间防止 Webkit 文本呈现变化