Skip to content

Instantly share code, notes, and snippets.

@maylogger
Last active December 16, 2015 13:39
Show Gist options
  • Select an option

  • Save maylogger/5443184 to your computer and use it in GitHub Desktop.

Select an option

Save maylogger/5443184 to your computer and use it in GitHub Desktop.
這是一個 compass mixin 會使用 SVG 檔案取代文字,不支援 SVG 的瀏覽器自動使用備援 PNG 代替。
@mixin replace-text-with-svg($svg-name, $png-name: $svg-name) {
@include replace-text-with-dimensions($png-name + ".png");
background-image: none, image-url($svg-name + ".svg");
}
@import "compass";
@import "replace-text-with-svg";
// logo.svg, logo.png 檔案名稱一樣
.logo {
@include replace-text-with-svg("logo");
}
// logo.svg, logo-small.png 檔案名稱不一樣(RWD 常見)
.logo {
@include replace-text-with-svg("logo", "logo-small");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment