2018-09-01 22:35:20 +02:00
|
|
|
---
|
|
|
|
title: "@while"
|
2019-03-05 01:24:31 +01:00
|
|
|
introduction: >
|
|
|
|
The `@while` rule, written `@while <expression> { ... }`, evaluates its block
|
|
|
|
if its [expression](../../syntax/structure#expressions) returns `true`. Then,
|
|
|
|
if its expression still returns `true`, it evaluates its block again. This
|
|
|
|
continues until the expression finally returns `false`.
|
2018-09-01 22:35:20 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
<% example do %>
|
2018-10-23 22:42:40 +02:00
|
|
|
/// Divides `$value` by `$ratio` until it's below `$base`.
|
|
|
|
@function scale-below($value, $base, $ratio: 1.618) {
|
|
|
|
@while $value > $base {
|
|
|
|
$value: $value / $ratio;
|
|
|
|
}
|
|
|
|
@return $value;
|
2018-09-01 22:35:20 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
$normal-font-size: 16px;
|
|
|
|
sup {
|
|
|
|
font-size: scale-below(20px, 16px);
|
|
|
|
}
|
|
|
|
===
|
|
|
|
/// Divides `$value` by `$ratio` until it's below `$base`.
|
|
|
|
@function scale-below($value, $base, $ratio: 1.618)
|
|
|
|
@while $value > $base
|
|
|
|
$value: $value / $ratio
|
2020-06-01 19:31:10 +02:00
|
|
|
@return $value
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
$normal-font-size: 16px
|
|
|
|
sup
|
|
|
|
font-size: scale-below(20px, 16px)
|
2018-09-01 22:35:20 +02:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% heads_up do %>
|
2018-10-23 22:42:40 +02:00
|
|
|
Although `@while` is necessary for a few particularly complex stylesheets, you're
|
|
|
|
usually better of using either [`@each`][] or [`@for`][] if either of them will
|
|
|
|
work. They're clearer for the reader, and often faster to compile as well.
|
2018-09-01 22:35:20 +02:00
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
[`@each`]: each
|
|
|
|
[`@for`]: for
|
2018-09-01 22:35:20 +02:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= partial 'documentation/snippets/truthiness-and-falsiness' %>
|