Skip to content

Instantly share code, notes, and snippets.

@ryonakae
Last active August 29, 2015 14:07
Show Gist options
  • Save ryonakae/0b7a660ddd5d9392e3a3 to your computer and use it in GitHub Desktop.
Save ryonakae/0b7a660ddd5d9392e3a3 to your computer and use it in GitHub Desktop.
Compassで使用可能な、background-sizeを使った@2x以上の画像を背景にする場合に便利なmixin
// Retina Background Image
// 第1引数に画像のファイル名
// 第2引数に画像の倍率(@2xなら2、@3xなら3)
=retinaBgImg($image:"image.png", $ratio:2)
$imageWidth: image-width($image) / $ratio
$imageHeight: image-height($image) / $ratio
background-image: image-url($image)
background-size: $imageWidth $imageHeight
background-repeat: no-repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment