将SVG输出直接与页面代码一起放置我可以使用CSS简单地修改填充颜色,如下所示:
polygon.mystar {
fill: blue;
}
circle.mycircle {
fill: green;
}
这很好用,但我正在寻找一种方法来修改SVG的“填充”属性,当它被用作背景图像时。
html {
background-image: url(../img/bg.svg);
}
如何更改颜色?它甚至可能吗?
供参考,以下是我的外部SVG文件的内容:
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="320px" height="100px" viewBox="0 0 320 100" enable-background="new 0 0 320 100" xml:space="preserve">
<polygon class="mystar" fill="#3CB54A" points="134.973,14.204 143.295,31.066 161.903,33.77 148.438,46.896 151.617,65.43 134.973,56.679
118.329,65.43 121.507,46.896 108.042,33.77 126.65,31.066 "/>
<circle class="mycircle" fill="#ED1F24" cx="202.028" cy="58.342" r="12.26"/>
</svg>
答案 0 :(得分:115)
我需要类似的东西,并希望坚持使用CSS。这里有LESS和SCSS mixins以及可以帮助你解决这个问题的简单CSS。不幸的是,它的浏览器支持有点松懈。有关浏览器支持的详细信息,请参阅下文。
LESS mixin:
.element-color(@color) {
background-image: url('data:image/svg+xml;utf8,<svg ...><g stroke="@{color}" ... /></g></svg>');
}
少用:
.element-color(#fff);
SCSS mixin:
@mixin element-color($color) {
background-image: url('data:image/svg+xml;utf8,<svg ...><g stroke="#{$color}" ... /></g></svg>');
}
SCSS用法:
@include element-color(#fff);
CSS:
// color: red
background-image: url('data:image/svg+xml;utf8,<svg ...><g stroke="red" ... /></g></svg>');
Here is more info将完整的SVG代码嵌入到CSS文件中。它还提到了浏览器兼容性,这对于一个可行的选择而言有点小。
答案 1 :(得分:57)
这样做的一种方法是从服务器端机制服务你的svg。 只需创建一个资源服务器端,根据GET参数输出您的svg,然后在某个URL上提供它。
然后你只需在你的CSS中使用该URL。
因为作为背景img,它不是DOM的一部分,你无法操纵它。 另一种可能性是定期使用它,以正常方式将其嵌入页面中,但绝对定位,使其全宽和宽。页面的高度,然后使用z-index css属性将其放在页面上的所有其他DOM元素后面。
答案 2 :(得分:47)
另一种方法是使用面膜。然后,您可以更改蒙版元素的背景颜色。这与更改svg的fill属性具有相同的效果。
HTML:
<glyph class="star"/>
<glyph class="heart" />
<glyph class="heart" style="background-color: green"/>
<glyph class="heart" style="background-color: blue"/>
CSS:
glyph {
display: inline-block;
width: 24px;
height: 24px;
}
glyph.star {
-webkit-mask: url(star.svg) no-repeat 100% 100%;
mask: url(star.svg) no-repeat 100% 100%;
-webkit-mask-size: cover;
mask-size: cover;
background-color: yellow;
}
glyph.heart {
-webkit-mask: url(heart.svg) no-repeat 100% 100%;
mask: url(heart.svg) no-repeat 100% 100%;
-webkit-mask-size: cover;
mask-size: cover;
background-color: red;
}
你会在这里找到一个完整的教程:http://codepen.io/noahblon/blog/coloring-svgs-in-css-background-images(不是我自己的)。它提出了各种方法(不限于掩模)。
答案 3 :(得分:46)
您可以使用CSS蒙版,使用'mask'属性,可以创建应用于元素的蒙版。
.icon {
background-color: red;
-webkit-mask-image: url(icon.svg);
mask-image: url(icon.svg);
}
有关详情,请参阅此精彩文章:https://codepen.io/noahblon/post/coloring-svgs-in-css-background-images
答案 4 :(得分:16)
Sass可以实现! 你唯一要做的就是对你的svg代码进行url编码。这可以通过Sass中的辅助函数实现。我为此制作了一个编码器。看看这个:
http://codepen.io/philippkuehn/pen/zGEjxB
// choose a color
$icon-color: #F84830;
// functions to urlencode the svg string
@function str-replace($string, $search, $replace: '') {
$index: str-index($string, $search);
@if $index {
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@return $string;
}
@function url-encode($string) {
$map: (
"%": "%25",
"<": "%3C",
">": "%3E",
" ": "%20",
"!": "%21",
"*": "%2A",
"'": "%27",
'"': "%22",
"(": "%28",
")": "%29",
";": "%3B",
":": "%3A",
"@": "%40",
"&": "%26",
"=": "%3D",
"+": "%2B",
"$": "%24",
",": "%2C",
"/": "%2F",
"?": "%3F",
"#": "%23",
"[": "%5B",
"]": "%5D"
);
$new: $string;
@each $search, $replace in $map {
$new: str-replace($new, $search, $replace);
}
@return $new;
}
@function inline-svg($string) {
@return url('data:image/svg+xml;utf8,#{url-encode($string)}');
}
// icon styles
// note the fill="' + $icon-color + '"
.icon {
display: inline-block;
width: 50px;
height: 50px;
background: inline-svg('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<path fill="' + $icon-color + '" d="M18.7,10.1c-0.6,0.7-1,1.6-0.9,2.6c0,0.7-0.6,0.8-0.9,0.3c-1.1-2.1-0.4-5.1,0.7-7.2c0.2-0.4,0-0.8-0.5-0.7
c-5.8,0.8-9,6.4-6.4,12c0.1,0.3-0.2,0.6-0.5,0.5c-0.6-0.3-1.1-0.7-1.6-1.3c-0.2-0.3-0.4-0.5-0.6-0.8c-0.2-0.4-0.7-0.3-0.8,0.3
c-0.5,2.5,0.3,5.3,2.1,7.1c4.4,4.5,13.9,1.7,13.4-5.1c-0.2-2.9-3.2-4.2-3.3-7.1C19.6,10,19.1,9.6,18.7,10.1z"/>
</svg>');
}
答案 5 :(得分:13)
使用棕褐色滤镜以及色相旋转,亮度和饱和度来创建我们想要的任何颜色。
.colorize-pink {
filter: brightness(0.5) sepia(1) hue-rotate(-70deg) saturate(5);
}
https://css-tricks.com/solved-with-css-colorizing-svg-backgrounds/
答案 6 :(得分:9)
答案 7 :(得分:9)
现在您可以在客户端实现此目的:
var green = '3CB54A';
var red = 'ED1F24';
var svg = '<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="320px" height="100px" viewBox="0 0 320 100" enable-background="new 0 0 320 100" xml:space="preserve"> <polygon class="mystar" fill="#'+green+'" points="134.973,14.204 143.295,31.066 161.903,33.77 148.438,46.896 151.617,65.43 134.973,56.679 118.329,65.43 121.507,46.896 108.042,33.77 126.65,31.066 "/><circle class="mycircle" fill="#'+red+'" cx="202.028" cy="58.342" r="12.26"/></svg>';
var encoded = window.btoa(svg);
document.body.style.background = "url(data:image/svg+xml;base64,"+encoded+")";
答案 8 :(得分:6)
您可以将SVG存储在变量中。然后根据您的需要(即设置宽度,高度,颜色等)操纵SVG字符串。然后使用结果设置背景,例如
$circle-icon-svg: '<svg xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="10" /></svg>';
$icon-color: #f00;
$icon-color-hover: #00f;
@function str-replace($string, $search, $replace: '') {
$index: str-index($string, $search);
@if $index {
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@return $string;
}
@function svg-fill ($svg, $color) {
@return str-replace($svg, '<svg', '<svg fill="#{$color}"');
}
@function svg-size ($svg, $width, $height) {
$svg: str-replace($svg, '<svg', '<svg width="#{$width}"');
$svg: str-replace($svg, '<svg', '<svg height="#{$height}"');
@return $svg;
}
.icon {
$icon-svg: svg-size($circle-icon-svg, 20, 20);
width: 20px; height: 20px; background: url('data:image/svg+xml;utf8,#{svg-fill($icon-svg, $icon-color)}');
&:hover {
background: url('data:image/svg+xml;utf8,#{svg-fill($icon-svg, $icon-color-hover)}');
}
}
我也做了一个演示,http://sassmeister.com/gist/4cf0265c5d0143a9e734。
此代码对SVG做了一些假设,例如: <svg />
元素没有现有的填充颜色,并且没有设置宽度或高度属性。由于输入在SCSS文档中是硬编码的,因此很容易实施这些约束。
不要担心代码重复。 gzip压缩使得差异可以忽略不计。
答案 9 :(得分:4)
.icon {
width: 48px;
height: 48px;
display: inline-block;
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/18515/heart.svg) no-repeat 50% 50%;
background-size: cover;
}
.icon-orange {
-webkit-filter: hue-rotate(40deg) saturate(0.5) brightness(390%) saturate(4);
filter: hue-rotate(40deg) saturate(0.5) brightness(390%) saturate(4);
}
.icon-yellow {
-webkit-filter: hue-rotate(70deg) saturate(100);
filter: hue-rotate(70deg) saturate(100);
}
答案 10 :(得分:3)
您可以为此创建自己的SCSS功能。将以下内容添加到config.rb文件中。
require 'sass'
require 'cgi'
module Sass::Script::Functions
def inline_svg_image(path, fill)
real_path = File.join(Compass.configuration.images_path, path.value)
svg = data(real_path)
svg.gsub! '{color}', fill.value
encoded_svg = CGI::escape(svg).gsub('+', '%20')
data_url = "url('data:image/svg+xml;charset=utf-8," + encoded_svg + "')"
Sass::Script::String.new(data_url)
end
private
def data(real_path)
if File.readable?(real_path)
File.open(real_path, "rb") {|io| io.read}
else
raise Compass::Error, "File not found or cannot be read: #{real_path}"
end
end
end
然后你可以在你的CSS中使用它:
.icon {
background-image: inline-svg-image('icons/icon.svg', '#555');
}
您需要编辑SVG文件并使用fill =&#34; {color}&#34;
替换标记中的所有填充属性图标路径始终相对于同一config.rb文件中的images_dir参数。
与其他一些解决方案类似,但这很干净,可以让您的SCSS文件保持整洁!
答案 11 :(得分:2)
对于单色背景,您可以使用带遮罩的svg,其中应显示背景颜色
Dim sPath as String
sPath = ThisWorkbook.Path + "\"
source = Cells(5, 2)
sourceSheet = Cells(6, 2)
sourceSheetRow = Cells(7, 2) - 1
destination = Cells(8, 2)
destinationSheet = Cells(9, 2)
destinationSheetRow = Cells(10, 2) - 1
source = source + ".xlsx"
destination = destination + ".xlsx"
If FileExists(sPath + source) = False Or FileExists(sPath + destination) = False Then
MsgBox "File not found, please double check file name and make sure is in the same folder"
Exit Sub
End If
...
,然后使用此CSS
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" preserveAspectRatio="xMidYMid meet" focusable="false" style="pointer-events: none; display: block; width: 100%; height: 100%;" >
<defs>
<mask id="Mask">
<rect width="100%" height="100%" fill="#fff" />
<polyline stroke-width="2.5" stroke="black" stroke-linecap="square" fill="none" transform="translate(10.373882, 8.762969) rotate(-315.000000) translate(-10.373882, -8.762969) " points="7.99893906 13.9878427 12.7488243 13.9878427 12.7488243 3.53809523"></polyline>
</mask>
</defs>
<rect x="0" y="0" width="20" height="20" fill="white" mask="url(#Mask)" />
</svg>
答案 12 :(得分:1)
在某些(非常具体)情况下,可以使用filter来实现。例如,您可以使用filter: hue-rotate(45deg);
将色调旋转45度,将蓝色SVG图像更改为紫色。浏览器支持很少,但它仍然是一种有趣的技术。
答案 13 :(得分:1)
此处显示的后期,但是,如果您能够直接编辑SVG代码,我可以为SVG多边形添加填充颜色,例如,以下svg呈现红色,而不是默认黑色。我没有在Chrome之外测试过:
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="500px" height="500px" viewBox="0 0 500 500" enable-background="new 0 0 500 500" xml:space="preserve">
<polygon
fill="red"
fill-rule="evenodd" clip-rule="evenodd" points="452.5,233.85 452.5,264.55 110.15,264.2 250.05,390.3 229.3,413.35
47.5,250.7 229.3,86.7 250.05,109.75 112.5,233.5 "/>
</svg>
答案 14 :(得分:0)
您可以使用亮度过滤器,任何大于 1 的值都会使元素更亮,任何小于 1 的值都会使元素更暗。因此,我们可以使那些浅色 SVG 变暗,反之亦然,例如,这将使 svg 变暗:
filter: brightness(0);
为了改变颜色而不仅仅是亮度级别,我们可以使用棕褐色滤镜以及色调旋转、亮度,例如:
.colorize-blue {
filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
}
答案 15 :(得分:-2)
这是我最喜欢的方法,但您的浏览器支持必须非常先进。使用mask属性,您可以创建应用于元素的蒙版。在任何地方,掩模都是不透明的,或者是实体的,底层图像显示出来。在透明的地方,底层图像被掩盖或隐藏。 CSS mask-image的语法类似于background-image。look at the codepen mask
答案 16 :(得分:-3)
很多IF,但如果你的pre base64编码的SVG开始:
<svg fill="#000000
然后base64编码的字符串将开始:
PHN2ZyBmaWxsPSIjMDAwMDAw
如果预编码的字符串开始:
<svg fill="#bfa76e
然后编码为:
PHN2ZyBmaWxsPSIjYmZhNzZl
两个编码的字符串都是相同的:
PHN2ZyBmaWxsPSIj
base64编码的怪癖是每3个输入字符变为4个输出字符。 SVG以这样的方式开始,然后6个字符的十六进制填充颜色正好在编码块的边界上开始。 因此您可以轻松地进行跨浏览器JS替换:
output = input.replace(/MDAwMDAw/, "YmZhNzZl");
但上面的tnt-rox回答是前进的方法。