用于创建动画渐变按钮背景的CSS

时间:2018-07-02 04:57:53

标签: css button css-animations linear-gradients keyframe

我正在寻找一个CSS规则,该规则可以为button's colored gradient background创建一个CSS动画。

我只是尝试玩这个游戏,并且这样做是:https://codepen.io/prashant-nadsoftdev/pen/bKzOrB

.custom-btn {
  background: linear-gradient(105deg, #f6d365, #fda085, #f6d365, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  background-size: 200% 200%;
  -webkit-animation: rainbow 5s ease infinite;
  -z-animation: rainbow 5s ease infinite;
  -o-animation: rainbow 5s ease infinite;
  animation: rainbow 5s ease infinite alternate;
  border: 0;
  padding: 25px;
  font-size: 40px;
  color: #fff;
}
@-webkit-keyframes rainbow {
  0%{background-position:0% 100%}
  100%{background-position:100% 0%}
}
@-moz-keyframes rainbow {
  0%{background-position:0% 100%}
  100%{background-position:100% 0%}
}
@-o-keyframes rainbow {
  0%{background-position:0% 100%}
  100%{background-position:100% 0%}
}
@keyframes rainbow { 
  0%{background-position:0% 100%}
  100%{background-position:100% 0%}
}
<body style="text-align:center;">
  <button class="custom-btn">My Button</button>
</body>

我需要颜色只能在一个方向(从左到右)上依次排列。我的代码很接近,但是我仍然需要两件事:

  1. 方向错误(颜色更改时需要完全相反的方向)。
  2. 它不应该停止。在最后一种颜色之后,它应该采用第一种颜色,然后继续。

1 个答案:

答案 0 :(得分:3)

要使渐变动画在一个方向上无限重复,您需要做的主要事情是调整渐变中的色标:

  1. 重复两次渐变停止。 (这使渐变的结束看起来像开始,从而使动画的每次重复之间都能平滑过渡。)
  2. 在末尾再次重复您的第一个渐变点。 (这使最后一站与第一站融为一体。)

您还需要调整关键帧,使它们朝着想要的方向前进(请参见下面的代码)。

.custom-btn {
  background: linear-gradient(105deg,
    /* Base gradient stops */
    #f6d365, #fda085, #f6d365, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3,
    /* Repeat your base gradient stops */
    #f6d365, #fda085, #f6d365, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3,
    /* Repeat your first gradient stop */
    #f6d365);
  
  background-size: 200% 200%;
  animation: rainbow 5s linear infinite;
  border: 0;
  padding: 25px;
  font-size: 40px;
  color: #fff;
}

@keyframes rainbow {
    0% { background-position: 100% 100% }
  100% { background-position: 0% 0% }
}
<body style="text-align:center;">
  <button class="custom-btn">My Button</button>
</body>