freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/applied-visual-design/change-animation-timing-wit...

2.8 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d78a8367417b2b2512ae7 Change Animation Timing with Keywords 0 使用关键字更改动画计时

Description

在CSS动画中 animation-timing-function属性控制动画元素在动画持续时间内的变化速度。如果动画是在给定时间( animation-duration 从A点移动到B点的汽车animation-timing-function表示汽车在行驶过程中如何加速和减速。有许多预定义的关键字可用于热门选项。例如,默认值为ease ,它开始缓慢,在中间加速,然后在最后再次减速。其他选项包括ease-out ,在开始时快速然后减速, ease-in ,在开始时缓慢,然后在结束时加速,或linear ,其在整个过程中应用恒定的动画速度。

Instructions

用于与ID的元素ball1ball2 ,一个添加animation-timing-function属性的每个,并设置#ball1linear ,和#ball2ease-out 。注意元素在动画期间如何移动但在一起结束之间的区别,因为它们共享相同的animation-duration 2秒。

Tests

tests:
  - text: 具有id <code>ball1</code>的元素的<code>animation-timing-function</code>属性的值应该是线性的。
    testString: 'assert($("#ball1").css("animation-timing-function") == "linear", "The value of the <code>animation-timing-function</code> property for the element with the id <code>ball1</code> should be linear.");'
  - text: 具有id <code>ball2</code>的元素的<code>animation-timing-function</code>属性的<code>ball2</code>应该是缓出的。
    testString: 'assert($("#ball2").css("animation-timing-function") == "ease-out", "The value of the <code>animation-timing-function</code> property for the element with the id <code>ball2</code> should be ease-out.");'

Challenge Seed

<style>

  .balls {
    border-radius: 50%;
    background: linear-gradient(
      35deg,
      #ccffff,
      #ffcccc
    );
    position: fixed;
    width: 50px;
    height: 50px;
    margin-top: 50px;
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  #ball1 {
    left:27%;

  }
  #ball2 {
    left:56%;

  }

@keyframes bounce {
  0% {
    top: 0px;
  }
  100% {
    top: 249px;
  }
}

</style>

<div class="balls" id="ball1"></div>
<div class="balls" id="ball2"></div>

Solution

// solution required