是否可以使用CSS在VML路径上设置填充和描边颜色和不透明度?

时间:2011-12-28 20:49:47

标签: css vml

例如,我想做类似以下的事情:

.myRedPath {
    fillcolor: red;
}

...

<v:path class="myRedPath" v="..."/>

用红色填充我的路径。 VML元素的填充和描边属性的颜色和不透明度是否可以实现?如果是这样,怎么样?

3 个答案:

答案 0 :(得分:3)

正如其他答案所述,您可以使用DHMTL behaviors将样式表中指定的任何样式应用于VML元素,因为从IE5到IE9支持行为。

首先创建一个HTC文件,例如:vmlcss.htc:

<PUBLIC:COMPONENT>
<PUBLIC:ATTACH EVENT="onpropertychange" ONEVENT="onpropertychange()" />
<PUBLIC:METHOD NAME="refresh" />
<SCRIPT LANGUAGE="JScript">

    function onpropertychange()
    {
        if (event.propertyName == "className")
        {
            refresh();
        }
    }

    function refresh()
    {
        // Set any VML attribute you may define in your stylesheet
        element.fillcolor = element.currentStyle["fillcolor"];
        element.strokecolor = element.currentStyle["strokecolor"];
        // etc.
    }

    refresh();

</SCRIPT>
</PUBLIC:COMPONENT>

然后将其应用于您的VML元素。对于您的特定示例,您将使用:

<style>
    v\:path
    {
        behavior: url(vmlcss.htc);
    }
</style>

最后,指定示例中显示的样式:

.myRedPath
{
    fillcolor: red;
    strokecolor: yellow;
}

您可能希望修改行为文件以添加对all VML attributes的支持。

可以使用这种技术编写一个使用VML或SVG绘制形状的库(取决于浏览器支持),并允许通过CSS进行样式设置。然后,通过将每个SVG样式映射到相应的VML属性,可以使用此类行为文件将对SVG styles的支持添加到VML对象。

答案 1 :(得分:2)

在IE7中,您可以执行以下操作:

vml\:polyline
{
  strokecolor: expression(this.strokecolor = "red");
  fillcolor: expression(this.fillcolor = "green");
}

但它在IE8 +标准模式下不起作用,所以没那么有用。

答案 2 :(得分:1)

VML使用属性而不是CSS属性,因此在样式表中引用它们的唯一方法是添加另一个引用htc sets attribute values的行为URL。否则,使用HTML元素包装VML元素并为其添加背景颜色:

<!doctype html>
<html xmlns:v xmlns:svg='http://www.w3.org/2000/svg'>
  <head>
    <meta charset="UTF-8">
    <title>Lightbox Simple</title>
    <style type="text/css">
    /* Hide scrollbars */
    /*html, body { overflow: hidden; }*/

    /*modal input*/
    .trigger { display:inline-block; }

    /* Hide modal transparency */
    .dialog, .film { position:absolute; left:-7777px; z-index:2; }

    /* modal output */
    a.trigger:hover .dialog { display: block; left:50%; top:50%; width:500px; border: 1px solid #fff; }
    a.trigger:hover .film { left: -3333px; top:-3333px; width:7777px; height:7777px; opacity: .7; background-color: #000; z-index: 3;}

    /* modal content */
    .visible { display: inline-block; background-color: #999; position:absolute; width: 200px; z-index: 4;}

    /* modal off switch */
    .closer { z-index:4; position:absolute; top:0; right:20px; display:block; background-color: #fff; color: #fff; width:0; }

    .placeholder { position:absolute; top:0; left:0; }
    @media,
        {
        v\:rect,v\:fill { behavior:url(#default#VML);}

        .vml_bg
        {
        position:absolute;
        left:0;
        top:0;
        width:100%;
        height:100%;
        }

        a.trigger:hover .film { width: 0; }

        .vml_wrap {
        position:absolute;
        left:0;
        top:0;
        width:0;
        height:0;
        display:inline-block;
        }
        a.trigger:hover { visibility: visible; }

        a.trigger:hover .vml_wrap{ width:7777px; height:7777px; }
        }
    </style>
  </head>
  <body>
    <p>hey</p>
    <span class="closer">X</span>
    <a href="#" class="trigger">
        you
        <span class="vml_wrap"><v:rect fillcolor="black" class="vml_bg"><v:fill opacity="0.5" /></v:rect></span>
        <span class="dialog">
            <span class="visible">hi</span>
            <span class="film">
            </span>
        </span>
    </a>
  </body>
</html>