Skip to content

Instantly share code, notes, and snippets.

@Leko
Last active December 18, 2015 22:39
Show Gist options
  • Save Leko/5856071 to your computer and use it in GitHub Desktop.
Save Leko/5856071 to your computer and use it in GitHub Desktop.
SassでFizzBuzzするmixin
@mixin fizzbuzz_content($n: 100) {
$fb: '', '', Fizz, '', Buzz, Fizz, '', '', Fizz, Buzz, '', Fizz, '', '', FizzBuzz;
$cont: '';
@for $i from 1 through $n {
@if nth($fb, ($i - 1) % 15 + 1) == '' {
$cont: $cont + $i + ' '
} @else {
$cont: $cont + nth($fb, ($i - 1) % 15 + 1) + ' ';
}
}
&:after { content: $cont; }
}
.fizzbuzz-c {
@include fizzbuzz_content();
}
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>FizzBuzz</title>
<!--↑のCSS読み込み-->
</head>
<body>
<div class="fizzbuzz-c"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment