Webkit颜色转换循环

Posted

tags:

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

Color-transition loop from the massiveblue homepage
  1. body, #logo h1 a, ul#menu li.on {background-color: #39f !important;}
  2. @-webkit-keyframes colours {
  3. 0% {background-color: #39f;}
  4. 15% {background-color: #8bc5d1;}
  5. 30% {background-color: #f8cb4a;}
  6. 45% {background-color: #95b850;}
  7. 60% {background-color: #944893;}
  8. 75% {background-color: #c71f00;}
  9. 90% {background-color: #bdb280;}
  10. 100% {background-color: #39f;}
  11. }
  12. body, #logo h1 a, ul#menu li.on {
  13. -webkit-animation-direction: normal;
  14. -webkit-animation-duration: 60s;
  15. -webkit-animation-iteration-count: infinite;
  16. -webkit-animation-name: colours;
  17. -webkit-animation-timing-function: ease;
  18. }

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

如何在微控制器按钮上使while循环更快?

片段布局不覆盖整个屏幕

常用python日期日志获取内容循环的代码片段

在片段中设置文本颜色

WebKit 转换错误的转换

AlertDialog 更改片段中的背景颜色 [重复]