freeCodeCamp/curriculum/challenges/arabic/01-responsive-web-design/applied-visual-design/modify-fill-mode-of-an-anim...

2.3 KiB

id title challengeType videoUrl localeTitle
58a7a6ebf9a6318348e2d5aa Modify Fill Mode of an Animation 0 تعديل وضع التعبئة من الرسوم المتحركة

Description

هذا رائع ، لكنه لا يعمل على الفور. لاحظ كيف تمت إعادة الرسوم المتحركة بعد مرور 500ms ثانية ، مما يتسبب في عودة الزر إلى اللون الأصلي. تريد أن يظل الزر مظللاً. يمكن القيام بذلك عن طريق تعيين خاصية animation-fill-mode إلى forwards . يحدد animation-fill-mode النمط المطبق على عنصر عندما ينتهي الرسم المتحرك. يمكنك تعيينه على النحو التالي: animation-fill-mode: forwards;

Instructions

عيّن خاصية animation-fill-mode button:hover إلى forwards حتى يظل الزر مظللاً عندما يمرر المستخدم فوقه.

Tests

tests:
  - text: '<code>button:hover</code> should have a <code>animation-fill-mode</code> with a <code>forwards</code> .'
    testString: 'assert(code.match(/button\s*?:\s*?hover\s*?{[\s\S]*animation-fill-mode\s*?:\s*?forwards\s*?;[\s\S]*}/gi) && code.match(/button\s*?:\s*?hover\s*?{[\s\S]*animation-name\s*?:\s*?background-color\s*?;[\s\S]*}/gi) && code.match(/button\s*?:\s*?hover\s*?{[\s\S]*animation-duration\s*?:\s*?500ms\s*?;[\s\S]*}/gi), "<code>button:hover</code> should have a <code>animation-fill-mode</code> property with a value of <code>forwards</code>.");'

Challenge Seed

<style>
  button {
    border-radius: 5px;
    color: white;
    background-color: #0F5897;
    padding: 5px 10px 8px 10px;
  }
  button:hover {
    animation-name: background-color;
    animation-duration: 500ms;
    /* add your code below this line */

    /* add your code above this line */
  }
  @keyframes background-color {
    100% {
      background-color: #4791d0;
    }
  }
</style>
<button>Register</button>

Solution

// solution required