Created
May 12, 2014 12:23
-
-
Save itzaks/9511bd41b6f958a30747 to your computer and use it in GitHub Desktop.
IE8 polyfill for 'background-size: cover'
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
| - var background = function(url) { | |
| - return "background-size: cover; background-image: url('" + url + "'); -ms-filter: \"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + url + "', sizingMethod='scale')\";"; | |
| - } |
Author
Author
Ruby helper:
def background(url)
"background-size: cover; background-image: url('" + url + "'); -ms-filter: \"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + url + "', sizingMethod='scale')\";"
end
Usage:
.hero(style=background(@campaign.attachment.url))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: