Skip to content

Instantly share code, notes, and snippets.

@akella
Created February 9, 2010 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akella/299652 to your computer and use it in GitHub Desktop.
Save akella/299652 to your computer and use it in GitHub Desktop.
.bg-crop{
_filter : expression(
(runtimeStyle.filter == '') ? runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src='+currentStyle.backgroundImage.split('\"')[1]+', sizingMethod=crop)' : runtimeStyle.filter,
runtimeStyle.backgroundImage = 'none');
}
.bg-png-scale{
filter : expression(
(runtimeStyle.backgroundImage != 'none') ? runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src='+currentStyle.backgroundImage.split('\"')[1]+', sizingMethod=scale)' : runtimeStyle.filter,
runtimeStyle.backgroundImage = 'none');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment