4.4 KiB
4.4 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7dbf367417b2b2512bbb | Apply a Style Until a Condition is Met with @while | 0 | 应用样式直到满足@while的条件 |
Description
@while
指令是一个与JavaScript while
循环具有类似功能的选项。它会创建CSS规则,直到满足条件。 @for
挑战给出了一个创建简单网格系统的示例。这也适用于@while
。 $ x:1;首先,定义变量
@while $ x <13 {
.col - #{$ x} {width:100%/ 12 * $ x;}
$ x:$ x + 1;
}
$x
并将其设置为1.接下来,使用@while
指令创建网格系统, 而 $x
小于13.在设置width
的CSS规则后, $x
增加1以避免无限循环。 Instructions
@while
创建一系列具有不同font-sizes
的类。从text-1
到text-10
应该有10个不同的类。然后将font-size
设置为5px乘以当前索引号。确保避免无限循环! Tests
tests:
- text: 您的代码应使用<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>为5px。
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>为10px。
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>为15px。
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>为20px。
testString: 'assert($(".text-4").css("font-size") == "20px", "Your <code>.text-4</code> class should have a <code>font-size</code> of 20px.");'
- text: 您的<code>.text-5</code>类的<code>font-size</code>为25px。
testString: 'assert($(".text-5").css("font-size") == "25px", "Your <code>.text-5</code> class should have a <code>font-size</code> of 25px.");'
- text: 您的<code>.text-6</code>类的<code>font-size</code>为30px。
testString: 'assert($(".text-6").css("font-size") == "30px", "Your <code>.text-6</code> class should have a <code>font-size</code> of 30px.");'
- text: 您的<code>.text-7</code>类的<code>font-size</code>为35px。
testString: 'assert($(".text-7").css("font-size") == "35px", "Your <code>.text-7</code> class should have a <code>font-size</code> of 35px.");'
- text: 您的<code>.text-8</code>类的<code>font-size</code>为40px。
testString: 'assert($(".text-8").css("font-size") == "40px", "Your <code>.text-8</code> class should have a <code>font-size</code> of 40px.");'
- text: 您的<code>.text-9</code>类的<code>font-size</code>为45px。
testString: 'assert($(".text-9").css("font-size") == "45px", "Your <code>.text-9</code> class should have a <code>font-size</code> of 45px.");'
- text: 您的<code>.text-10</code>类的<code>font-size</code>为50px。
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