Skip to content

Instantly share code, notes, and snippets.

@KatieK2
Last active July 19, 2022 05:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save KatieK2/8966210 to your computer and use it in GitHub Desktop.
Save KatieK2/8966210 to your computer and use it in GitHub Desktop.
Demonstrates a list and random() to show a randomly generated background image. Generated by SassMeister.com.
// ----
// Sass (v3.3.0)
// Compass (v1.0.0.alpha.18)
// ----
$imgKey: random(5);
$list: apple, banana, cherry, durian, eggplant;
$nth: nth($list, $imgKey);
body {
background-image: "/images/#{$nth}.jpg";
}
body {
background-image: "/images/eggplant.jpg";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment