freeCodeCamp/curriculum/challenges/arabic/03-front-end-libraries/sass/apply-a-style-until-a-condi...

4.9 KiB

id title challengeType videoUrl localeTitle
587d7dbf367417b2b2512bbb Apply a Style Until a Condition is Met with @while 0 تطبيق نمط حتى يتم استيفاء الشرط معwhile

Description

إن التوجيه @while هو خيار له وظيفة مشابهة لجافا سكريبت while التكرار. يقوم بإنشاء قواعد CSS حتى يتم استيفاء الشرط. قدم تحدي @for مثالاً لإنشاء نظام شبكة بسيط. هذا يمكن أن تعمل أيضا مع @while .
$ x: 1؛
while $ x <13 {
.col - # {$ x} {width: 100٪ / 12 * $ x؛}
$ x: $ x + 1؛
}
أولاً ، قم بتعريف متغير $x وقم بتعيينه على 1. التالي ، استخدم التوجيه @while لإنشاء نظام الشبكة بينما يكون $x أقل من 13. بعد تعيين قاعدة CSS width ، يتم زيادة $x بمقدار 1 لتجنب حلقة لا نهائية.

Instructions

استخدم @while لإنشاء سلسلة من الفصول font-sizes مختلفة من font-sizes . يجب أن يكون هناك 10 فصول مختلفة من text-1 إلى text-10 . ثم قم بتعيين font-size إلى 5 بكسل مضروبًا في رقم الفهرس الحالي. تأكد من تجنب حلقة لا نهائية!

Tests

tests:
  - text: يجب أن تستخدم <code>@while</code> توجيه <code>@while</code> في الوقت <code>@while</code> .
    testString: 'assert(code.match(/@while /g), "Your code should use the <code>@while</code> directive.");'
  - text: يجب أن تحدد التعليمات البرمجية متغير فهرس إلى 1 لبدء.
    testString: 'assert(code.match(/\$.*:\s*?1;/gi), "Your code should set an index variable to 1 to start.");'
  - text: يجب أن تزيد التعليمات البرمجية الخاصة بك متغير عداد.
    testString: 'assert(code.match(/\$(.*):\s*?\$\1\s*?\+\s*?1;/gi), "Your code should increment the counter variable.");'
  - text: يجب أن يكون للفئة <code>.text-1</code> <code>font-size</code> يبلغ 5 بكسل.
    testString: 'assert($(".text-1").css("font-size") == "5px", "Your <code>.text-1</code> class should have a <code>font-size</code> of 5px.");'
  - text: يجب أن يكون لفئة <code>.text-2</code> <code>font-size</code> بيكسل.
    testString: 'assert($(".text-2").css("font-size") == "10px", "Your <code>.text-2</code> class should have a <code>font-size</code> of 10px.");'
  - text: يجب أن يكون للفئة <code>.text-3</code> <code>font-size</code> يبلغ 15 بكسل.
    testString: 'assert($(".text-3").css("font-size") == "15px", "Your <code>.text-3</code> class should have a <code>font-size</code> of 15px.");'
  - text: يجب أن يكون لفئة <code>.text-4</code> <code>font-size</code> بكسل.
    testString: 'assert($(".text-4").css("font-size") == "20px", "Your <code>.text-4</code> class should have a <code>font-size</code> of 20px.");'
  - text: يجب أن يكون لفئة .text <code>.text-5</code> حجمًا <code>font-size</code> 25 بكسل.
    testString: 'assert($(".text-5").css("font-size") == "25px", "Your <code>.text-5</code> class should have a <code>font-size</code> of 25px.");'
  - text: ''
    testString: 'assert($(".text-6").css("font-size") == "30px", "Your <code>.text-6</code> class should have a <code>font-size</code> of 30px.");'
  - text: ''
    testString: 'assert($(".text-7").css("font-size") == "35px", "Your <code>.text-7</code> class should have a <code>font-size</code> of 35px.");'
  - text: ''
    testString: 'assert($(".text-8").css("font-size") == "40px", "Your <code>.text-8</code> class should have a <code>font-size</code> of 40px.");'
  - text: ''
    testString: 'assert($(".text-9").css("font-size") == "45px", "Your <code>.text-9</code> class should have a <code>font-size</code> of 45px.");'
  - text: ''
    testString: 'assert($(".text-10").css("font-size") == "50px", "Your <code>.text-10</code> class should have a <code>font-size</code> of 50px.");'

Challenge Seed

<style type='text/sass'>



</style>

<p class="text-1">Hello</p>
<p class="text-2">Hello</p>
<p class="text-3">Hello</p>
<p class="text-4">Hello</p>
<p class="text-5">Hello</p>
<p class="text-6">Hello</p>
<p class="text-7">Hello</p>
<p class="text-8">Hello</p>
<p class="text-9">Hello</p>
<p class="text-10">Hello</p>

Solution

// solution required