zoukankan      html  css  js  c++  java
  • css3背景自动变色代码

       分享自己站点上用于背景自动变色,可设置变色的时间,放在body的样式上

       演示站点:http://www.sdfymj.com/invest/

    代码如下:

      

    body{/*background-color: #f5f5f5;*/background:  #e74c3c;animation: bg-color 30s infinite;animate-delay:30s;-webkit-animation: bg-color 30s infinite;overflow-x: hidden;overflow-x: hidden;}
    @-webkit-keyframes bg-color {
      0% { background-color: #e74c3c; }
      20% { background-color: #f1c40f; }
      40% { background-color: #1abc9c; }
      60% { background-color: #3498db; }
      80% { background-color: #9b59b6; }
      100% { background-color: #e74c3c; }
    }
    @keyframes bg-color {
      0% { background-color: #e74c3c; }
      20% { background-color: #f1c40f; }
      40% { background-color: #1abc9c; }
      60% { background-color: #3498db; }
      80% { background-color: #9b59b6; }
      100% { background-color: #e74c3c; }
    }
    

      

  • 相关阅读:
    Php compiler for .NET framework
    C++ Virtual Inheritance Memory Layout
    MIT公开课汉化
    OpenGL like Vulkan
    C++ Chrono Timer
    VisTools: C++模仿Java体系
    Lua IDE
    PHP调试
    Decoda
    JSRDB
  • 原文地址:https://www.cnblogs.com/68xi/p/13407906.html
Copyright © 2011-2022 走看看