Last active
December 16, 2015 13:39
-
-
Save maylogger/5443184 to your computer and use it in GitHub Desktop.
這是一個 compass mixin 會使用 SVG 檔案取代文字,不支援 SVG 的瀏覽器自動使用備援 PNG 代替。
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
| @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"); | |
| } |
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
| @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