blob: f06ab6d55f7b16f8119853045c52ef98af60e093 (
plain)
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
|
SVG.ViewBox = function(element) {
var x, y, width, height
, box = element.bbox()
, view = (element.attr('viewBox') || '').match(/-?[\d\.]+/g)
/* clone attributes */
this.x = box.x
this.y = box.y
this.width = element.node.offsetWidth || element.attr('width')
this.height = element.node.offsetHeight || element.attr('height')
if (view) {
/* get width and height from viewbox */
x = parseFloat(view[0])
y = parseFloat(view[1])
width = parseFloat(view[2])
height = parseFloat(view[3])
/* calculate zoom accoring to viewbox */
this.zoom = ((this.width / this.height) > (width / height)) ?
this.height / height :
this.width / width
/* calculate real pixel dimensions on parent SVG.Doc element */
this.x = x
this.y = y
this.width = width
this.height = height
}
/* ensure a default zoom value */
this.zoom = this.zoom || 1
}
SVG.extend(SVG.ViewBox, {
// Parse viewbox to string
toString: function() {
return this.x + ' ' + this.y + ' ' + this.width + ' ' + this.height
}
})
|