1

我在 CSS 中构建了一个带边框和条纹的椭圆,我想用 SVG 做一些类似的事情。我对 SVG 完全陌生,我尝试过使用 Raphael。这是据我所知(见小提琴here):

var paper = Raphael(150, 150, 320, 320);
var oval = paper.rect(0, 0, 100, 50, 25);
oval.attr('fill', 'crimson');
oval.attr('stroke', 'transparent');

与 CSS 类似,我如何使用 SVG 进行条纹?

4

2 回答 2

3

Raphael 似乎不支持模式,但它确实支持线性渐变作为填充属性的值:

渐变

“‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›”,例如:“90-#fff-#000”——从白色到黑色的90°渐变或“0- #fff-#f00:20-#000” – 从白色到红色(20%)到黑色的 0° 渐变。

因此,使用 Raphael 文档中描述的线性渐变格式,我们可以创建条纹渐变。创建一个为您生成条纹渐变字符串的函数可能很有意义。

function gradientString(color1, color2, step) {
    var gradient = '0-' + color1,
        stripe = false,
        i;

    for (i = 0; i < 100; i += step) {
        if (stripe) {
            gradient += '-' + color1 + ':' + i + '-' + color2 + ':' + i;
        } else {
            gradient += '-' + color2 + ':' + i + '-' + color1 + ':' + i;
        }

        stripe = !stripe;
    }

    return gradient;
}

var paper = Raphael(150, 150, 320, 320);
var oval = paper.rect(0, 0, 100, 50, 25);
oval.attr('fill', gradientString('white', 'crimson', 2));
oval.attr('stroke', 'crimson');

见:http: //jsfiddle.net/p4Qgw/

于 2013-01-27T00:23:40.457 回答
0

您可以在 <ellipse> 元素中使用 fill 属性或 <filter> 元素。

以下链接包含这两个示例:

http://srufaculty.sru.edu/david.dailey/svg/newstuff/filtermatrixPattern1.svg

过滤器的解释在这里:

http://srufaculty.sru.edu/david.dailey/svg/SVGOpen2010/Filters2.htm

于 2013-01-25T21:24:18.937 回答