1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
// Define list of available attributes for stroke and fill
SVG._stroke = ['color', 'width', 'opacity', 'linecap', 'linejoin', 'miterlimit', 'dasharray', 'dashoffset']
SVG._fill = ['color', 'opacity', 'rule']
// Prepend correct color prefix
var _colorPrefix = function(type, attr) {
return attr == 'color' ? type : type + '-' + attr
}
/* Add sugar for fill and stroke */
;['fill', 'stroke'].forEach(function(method) {
var extension = {}
extension[method] = function(o) {
var indexOf
if (typeof o == 'string' || SVG.Color.isRgb(o) || (o && typeof o.fill === 'function'))
this.attr(method, o)
else
/* set all attributes from _fillAttr and _strokeAttr list */
for (index = SVG['_' + method].length - 1; index >= 0; index--)
if (o[SVG['_' + method][index]] != null)
this.attr(_colorPrefix(method, SVG['_' + method][index]), o[SVG['_' + method][index]])
return this
}
SVG.extend(SVG.Element, SVG.FX, extension)
})
SVG.extend(SVG.Element, SVG.FX, {
// Rotation
rotate: function(deg, x, y) {
return this.transform({
rotation: deg || 0
, cx: x
, cy: y
})
}
// Skew
, skew: function(x, y) {
return this.transform({
skewX: x || 0
, skewY: y || 0
})
}
// Scale
, scale: function(x, y) {
return this.transform({
scaleX: x
, scaleY: y == null ? x : y
})
}
// Translate
, translate: function(x, y) {
return this.transform({
x: x
, y: y
})
}
// Matrix
, matrix: function(m) {
return this.transform({ matrix: m })
}
// Opacity
, opacity: function(value) {
return this.attr('opacity', value)
}
})
//
SVG.extend(SVG.Rect, SVG.Ellipse, {
// Add x and y radius
radius: function(x, y) {
return this.attr({ rx: x, ry: y || x })
}
})
if (SVG.Text) {
SVG.extend(SVG.Text, SVG.FX, {
// Set font
font: function(o) {
for (var key in o)
key == 'anchor' ?
this.attr('text-anchor', o[key]) :
_styleAttr.indexOf(key) > -1 ?
this.attr('font-'+ key, o[key]) :
this.attr(key, o[key])
return this
}
})
}
|