Last active
August 29, 2015 14:07
-
-
Save ryonakae/0b7a660ddd5d9392e3a3 to your computer and use it in GitHub Desktop.
Compassで使用可能な、background-sizeを使った@2x以上の画像を背景にする場合に便利なmixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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