了解SVG查询字符串参数

时间:2013-04-12 17:02:20

标签: javascript parameters svg query-string

我创建了一个SVG文件,我打算用它作为CSS中的背景图像。我希望能够使用查询字符串参数更改SVG中的填充颜色,如下所示:

#rect     { background-image: url( 'rect.svg' ); }
#rect.red { background-image: url( 'rect.svg?color=red' ); }

据我所知,在SVG中使用脚本标记,我可以获取color参数并更新填充颜色。以下是SVG的示例:

<!DOCTYPE svg PUBLIC "-//W3C//DDTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
    <rect width="100%" height="100%" />

    <script>
    <![CDATA[
        var params = { };
        location.href.split( '?' )[1].split( '&' ).forEach(
            function( i )
            {
                params[ i.split( '=' )[0] ] = i.split( '=' )[1];
            }
        );

        if( params.color )
        {
            var rect = document.getElementsByTagName( "rect" )[0];
            rect.setAttribute( "fill", params.color );
        }
    ]]>
    </script>
</svg>

直接转到文件或使用对象标签似乎有效,但对于CSS背景图片或img标签,颜色参数将被忽略。

我不确定这里发生了什么,我希望有一个解释或替代方案来解决我想要完成的事情(最好不要求助于服务器端处理)。

这是一个显示不同渲染方法的jsFiddle:http://jsfiddle.net/ehb7S/

2 个答案:

答案 0 :(得分:4)

您可以使用隐藏的内联SVG,对其进行更改并将其动态编码为您放入background-image属性的数据URL。您的HTML可能如下所示:

<div id="backgroundContainer" style="display:none">
    <svg width="100px" height="100px" id="backgroundSvg" xmlns="http://www.w3.org/2000/svg">
        <circle cx="50" cy="50" r="50" fill="green"/>
    </svg>
</div>

<div id="divWithBackground" onclick="changeBackground(event)">
    Click to change background SVG to random color
</div>

和你的JavaScript一样

changeBackground = function(event) {
  var backgroundSvg = document.getElementById("backgroundSvg");
  var backgroundContainer = document.getElementById("backgroundContainer");
  backgroundSvg.getElementsByTagName("circle")[0].setAttribute(
    "fill",
    ["red","green","blue","black"][Math.floor(4*Math.random())]
  );
  event.target.setAttribute(
    "style",
    "background-image:url(data:image/svg+xml,"
    + encodeURI(backgroundContainer.innerHTML)
    + ")"
  );
}

请参阅proof of concept on jsFiddle

答案 1 :(得分:1)

我最终创建了一个服务器端解决方案,允许我将颜色填充注入SVG文件。基本上,我将所有SVG请求重定向到执行以下操作的PHP文件:

$filename = $_SERVER['SCRIPT_FILENAME'];

$svg = simplexml_load_file( $filename );
if( isset( $_GET['color'] ) )
{
    $svg->path->addAttribute( 'fill', '#' . $_GET['color'] );
}

header( "Content-type: image/svg+xml" );
echo $svg->asXML( );

显然,除此之外还有更多的东西,处理缓存等等,但这就是肉 - 土豆。可能还想检查fill属性是否已经存在。