SVG.js
A lightweight library for manipulating and animating SVG.
Svg.js has no dependencies and aims to be as small as possible.
Svg.js is licensed under the terms of the MIT License.
See svgjs.com for an introduction, documentation and some action.
Usage
Create an SVG document
Use the SVG()
function to create an SVG document within a given html element:
var draw = SVG('drawing').size(300, 300)
var rect = draw.rect(100, 100).attr({ fill: '#f06' })
The first argument can either be an id of the element or the selected element itself.
This will generate the following output:
<div id="drawing">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300">
<rect width="100" height="100" fill="#f06"></rect>
</svg>
</div>
By default the svg drawing follows the dimensions of its parent, in this case #drawing
:
var draw = SVG('drawing').size('100%', '100%')
Checking for SVG support
By default this library assumes the client's browser supports SVG. You can test support as follows:
if (SVG.supported) {
var draw = SVG('drawing')
var rect = draw.rect(100, 100)
} else {
alert('SVG not supported')
}
SVG document
Svg.js also works outside of the HTML DOM, inside an SVG document for example:
<?xml version="1.0" encoding="utf-8" ?>
<svg id="drawing" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" >
<script type="text/javascript" xlink:href="svg.min.js"></script>
<script type="text/javascript">
<![CDATA[
var draw = SVG('drawing')
draw.rect(100,100).animate().fill('#f03').move(100,100)
]]>
</script>
</svg>
Sub-pixel offset fix
Call the spof()
method to fix sub-pixel offset:
var draw = SVG('drawing').spof()
To enable automatic sub-pixel offset correction when the window is resized:
SVG.on(window, 'resize', function() { draw.spof() })
Parent elements
Main svg document
The main SVG.js initializer function creates a root svg node in the given element and returns an instance of SVG.Doc
:
var draw = SVG('drawing')
returns
: SVG.Doc
Javascript inheritance stack: SVG.Doc
< SVG.Container
< SVG.Parent
Nested svg
With this feature you can nest svg documents within each other. Nested svg documents have exactly the same features as the main, top-level svg document:
var nested = draw.nested()
var rect = nested.rect(200, 200)
returns
: SVG.Nested
Javascript inheritance stack: SVG.Nested
< SVG.Container
< SVG.Parent
Groups
Grouping elements is useful if you want to transform a set of elements as if it were one. All element within a group maintain their position relative to the group they belong to. A group has all the same element methods as the root svg document:
var group = draw.group()
group.path('M10,20L30,40')
Existing elements from the svg document can also be added to a group:
group.add(rect)
Note: Groups do not have a geometry of their own, it's inherited from their content. Therefore groups do not listen to x
, y
, width
and height
attributes. If that is what you are looking for, use a nested()
svg instead.
returns
: SVG.G
Javascript inheritance stack: SVG.G
< SVG.Container
< SVG.Parent
Hyperlink
A hyperlink or <a>
tag creates a container that enables a link on all children:
var link = draw.link('http://svgjs.com')
var rect = link.rect(100, 100)
The link url can be updated with the to()
method:
link.to('http://apple.com')
Furthermore, the link element has a show()
method to create the xlink:show
attribute:
link.show('replace')
And the target()
method to create the target
attribute:
link.target('_blank')
Elements can also be linked the other way around with the linkTo()
method:
rect.linkTo('http://svgjs.com')
Alternatively a block can be passed instead of a url for more options on the link element:
rect.linkTo(function(link) {
link.to('http://svgjs.com').target('_blank')
})
returns
: SVG.A
Javascript inheritance stack: SVG.A
< SVG.Container
< SVG.Parent
Defs
The <defs>
element is a container element for referenced elements. Elements that are descendants of a ‘defs’ are not rendered directly. The <defs>
node lives in the main <svg>
document and can be accessed with the defs()
method:
var defs = draw.defs()
The defs are also available on any other element through the doc()
method:
var defs = rect.doc().defs()
The defs node works exactly the same as groups.
returns
: SVG.Defs
Javascript inheritance stack: SVG.Defs
< SVG.Container
< SVG.Parent
Rect
Rects have two arguments, their width
and height
:
var rect = draw.rect(100, 100)
returns
: SVG.Rect
Javascript inheritance stack: SVG.Rect
< SVG.Shape
< SVG.Element
radius()
Rects can also have rounded corners:
rect.radius(10)
This will set the rx
and ry
attributes to 10
. To set rx
and ry
individually:
rect.radius(10, 20)
returns
: itself
Circle
The only argument necessary for a circle is the diameter:
var circle = draw.circle(100)
returns
: SVG.Circle
Javascript inheritance stack: SVG.Circle
< SVG.Shape
< SVG.Element
radius()
Circles can also be redefined by their radius:
rect.radius(75)
returns
: itself
Ellipse
Ellipses, like rects, have two arguments, their width
and height
:
var ellipse = draw.ellipse(200, 100)
returns
: SVG.Ellipse
Javascript inheritance stack: SVG.Ellipse
< SVG.Shape
< SVG.Element
radius()
Ellipses can also be redefined by their radii:
rect.radius(75, 50)
returns
: itself
Line
Create a line from point A to point B:
var line = draw.line(0, 0, 100, 150).stroke({ width: 1 })
Creating a line element can be done in four ways. Look at the plot()
method to see all the possiblilities.
returns
: SVG.Line
Javascript inheritance stack: SVG.Line
< SVG.Shape
< SVG.Element
plot()
Updating a line is done with the plot()
method:
line.plot(50, 30, 100, 150)
Alternatively it also accepts a point string:
line.plot('0,0 100,150')
Or a point array:
line.plot([[0, 0], [100, 150]])
Or an instance of SVG.PointArray
:
var array = new SVG.PointArray([[0, 0], [100, 150]])
line.plot(array)
returns
: itself
array()
References the SVG.PointArray
instance. This method is rather intended for internal use:
polyline.array()
returns
: SVG.PointArray
Polyline
The polyline element defines a set of connected straight line segments. Typically, polyline elements define open shapes:
var polyline = draw.polyline('0,0 100,50 50,100').fill('none').stroke({ width: 1 })
Polyline strings consist of a list of points separated by spaces: x,y x,y x,y
.
As an alternative an array of points will work as well:
var polyline = draw.polyline([[0,0], [100,50], [50,100]]).fill('none').stroke({ width: 1 })
returns
: SVG.Polyline
Javascript inheritance stack: SVG.Polyline
< SVG.Shape
< SVG.Element
plot()
Polylines can be updated using the plot()
method:
polyline.plot([[0,0], [100,50], [50,100], [150,50], [200,50]])
The plot()
method can also be animated:
polyline.animate(3000).plot([[0,0], [100,50], [50,100], [150,50], [200,50], [250,100], [300,50], [350,50]])
returns
: itself
array()
References the SVG.PointArray
instance. This method is rather intended for internal use:
polyline.array()
returns
: SVG.PointArray
Polygon
The polygon element, unlike the polyline element, defines a closed shape consisting of a set of connected straight line segments:
var polygon = draw.polygon('0,0 100,50 50,100').fill('none').stroke({ width: 1 })
Polygon strings are exactly the same as polyline strings. There is no need to close the shape as the first and last point will be connected automatically.
returns
: SVG.Polygon
Javascript inheritance stack: SVG.Polygon
< SVG.Shape
< SVG.Element
plot()
Like polylines, polygons can be updated using the plot()
method:
polygon.plot([[0,0], [100,50], [50,100], [150,50], [200,50]])
The plot()
method can also be animated:
polygon.animate(3000).plot([[0,0], [100,50], [50,100], [150,50], [200,50], [250,100], [300,50], [350,50]])
returns
: itself
array()
References the SVG.PointArray
instance. This method is rather intended for internal use:
polygon.array()
returns
: SVG.PointArray
Path
The path string is similar to the polygon string but much more complex in order to support curves:
draw.path('M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100')
returns
: SVG.Path
Javascript inheritance stack: SVG.Path
< SVG.Shape
< SVG.Element
For more details on path data strings, please refer to the SVG documentation:
http://www.w3.org/TR/SVG/paths.html#PathData
plot()
Paths can be updated using the plot()
method:
path.plot('M100,200L300,400')
returns
: itself
array()
References the SVG.PathArray
instance. This method is rather intended for internal use:
path.array()
returns
: SVG.PathArray
Image
Creating images is as you might expect:
var image = draw.image('/path/to/image.jpg')
If you know the size of the image, those parameters can be passed as the second and third arguments:
var image = draw.image('/path/to/image.jpg', 200, 300)
returns
: SVG.Image
Javascript inheritance stack: SVG.Image
< SVG.Shape
< SVG.Element
load()
Loading another image can be done with the load()
method:
image.load('/path/to/another/image.jpg')
returns
: itself
loaded()
If you don't know the size of the image, obviously you will have to wait for the image to be loaded
:
var image = draw.image('/path/to/image.jpg').loaded(function(loader) {
this.size(loader.width, loader.height)
})
The returned loader
object as first the argument of the loaded method contains four values:
width
height
ratio
(width / height)url
returns
: itself
Text
Unlike html, text in svg is much harder to tame. There is no way to create flowing text, so newlines should be entered manually. In SVG.js there are two ways to create text elements.
The first and easiest method is to provide a string of text, split by newlines:
var text = draw.text("Lorem ipsum dolor sit amet consectetur.\nCras sodales imperdiet auctor.")
This will automatically create a block of text and insert newlines where necessary.
The second method will give you much more control but requires a bit more code:
var text = draw.text(function(add) {
add.tspan('Lorem ipsum dolor sit amet ').newLine()
add.tspan('consectetur').fill('#f06')
add.tspan('.')
add.tspan('Cras sodales imperdiet auctor.').newLine().dx(20)
add.tspan('Nunc ultrices lectus at erat').newLine()
add.tspan('dictum pharetra elementum ante').newLine()
})
If you want to go the other way and don't want to add tspans at all, just one line of text, you can use the plain()
method instead:
var text = draw.plain('Lorem ipsum dolor sit amet consectetur.')
This is a shortcut to the plain
method on the SVG.Text
instance which doesn't render newlines at all.
Javascript inheritance stack: SVG.Text
< SVG.Shape
< SVG.Element
returns
: SVG.Text
text()
Changing text afterwards is also possible with the text()
method:
text.text('Brilliant!')
returns
: itself
To get the raw text content:
text.text()
returns
: string
tspan()
Just adding one tspan is also possible:
text.tspan(' on a train...').fill('#f06')
returns
: SVG.Tspan
plain()
If the content of the element doesn't need any stying or multiple lines, it might be sufficient to just add some plain text:
text.plain('I do not have any expectations.')
returns
: itself
font()
The sugar.js module provides some syntax sugar specifically for this element type:
text.font({
family: 'Helvetica'
, size: 144
, anchor: 'middle'
, leading: '1.5em'
})
returns
: itself
leading()
As opposed to html, where leading is defined by line-height
, svg does not have a natural leading equivalent. In svg, lines are not defined naturally. They are defined by <tspan>
nodes with a dy
attribute defining the line height and a x
value resetting the line to the x
position of the parent text element. But you can also have many nodes in one line defining a different y
, dy
, x
or even dx
value. This gives us a lot of freedom, but also a lot more responsibility. We have to decide when a new line is defined, where it starts, what its offset is and what it's height is. The leading()
method in SVG.js tries to ease the pain by giving you behaviour that is much closer to html. In combination with newline separated text, it works just like html:
var text = draw.text("Lorem ipsum dolor sit amet consectetur.\nCras sodales imperdiet auctor.")
text.leading(1.3)
This will render a text element with a tspan element for each line, with a dy
value of 130%
of the font size.
Note that the leading()
method assumes that every first level tspan in a text node represents a new line. Using leading()
on text elements containing multiple tspans in one line (e.g. without a wrapping tspan defining a new line) will render scrambeled. So it is advisable to use this method with care, preferably only when throwing newline separated text at the text element or calling the newLine()
method on every first level tspan added in the block passed as argument to the text element.
returns
: itself
build()
The build()
can be used to enable / disable build mode. With build mode disabled, the plain()
and tspan()
methods will first call the clear()
bethod before adding the new content. So when build mode is enabled, plain()
and tspan()
will append the new content to the existing content. When passing a block to the text()
method, build mode is toggled automatically before and after the block is called. But in some cases it might be useful to be able to toggle it manually:
var text = draw.text('This is just the start, ')
text.build(true)
var tspan = text.tspan('something pink in the middle ').fill('#00ff97')
text.plain('and again boring at the end.')
text.build(false)
tspan.animate('2s').fill('#f06')
returns
: itself
rebuild()
This is an internal callback that probably never needs to be called manually. Basically it rebuilds the text element whenerver font-size
and x
attributes or the leading()
of the text element are modified. This method also acts a setter to enable or disable rebuilding:
text.rebuild(false)
text.rebuild(true)
returns
: itself
clear()
Clear all the contents of the called text element:
text.clear()
returns
: itself
length()
Gets the total computed text length of all tspans together:
text.length()
returns
: number
lines()
All first level tspans can be referenced with the lines()
method:
text.lines()
This will return an intance of SVG.Set
including all tspan
elements.
returns
: SVG.Set
events
The text element has one event. It is fired every time the rebuild()
method is called:
text.on('rebuild', function() {
})
Tspan
The tspan elements are only available inside text elements or inside other tspan elements. In SVG.js they have a class of their own:
Javascript inheritance stack: SVG.Tspan
< SVG.Shape
< SVG.Element
text()
Update the content of the tspan. This can be done by either passing a string:
tspan.text('Just a string.')
Which will basicly call the plain()
method.
Or by passing a block to add more specific content inside the called tspan:
tspan.text(function(add) {
add.plain('Just plain text.')
add.tspan('Fancy text wrapped in a tspan.').fill('#f06')
add.tspan(function(addMore) {
addMore.tspan('And you can doo deeper and deeper...')
})
})
returns
: itself
tspan()
Add a nested tspan:
tspan.tspan('I am a child of my parent').fill('#f06')
returns
: SVG.Tspan
plain()
Just adds some plain text:
tspan.plain('I do not have any expectations.')
returns
: itself
dx()
Define the dynamic x
value of the element, much like a html element with position:relative
and left
defined:
tspan.dx(30)
returns
: itself
dy()
Define the dynamic y
value of the element, much like a html element with position:relative
and top
defined:
tspan.dy(30)
returns
: itself
newLine()
The newLine()
is a convenience method for adding a new line with a dy
attribute using the current "leading":
var text = draw.text(function(add) {
add.tspan('Lorem ipsum dolor sit amet ').newLine()
add.tspan('consectetur').fill('#f06')
add.tspan('.')
add.tspan('Cras sodales imperdiet auctor.').newLine().dx(20)
add.tspan('Nunc ultrices lectus at erat').newLine()
add.tspan('dictum pharetra elementum ante').newLine()
})
returns
: itself
clear()
Clear all the contents of the called tspan element:
tspan.clear()
returns
: itself
length()
Gets the total computed text length:
tspan.length()
returns
: number
TextPath
A nice feature in svg is the ability to run text along a path:
var text = draw.text(function(add) {
add.tspan('We go ')
add.tspan('up').fill('#f09').dy(-40)
add.tspan(', then we go down, then up again').dy(40)
})
text
.path('M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100')
.font({ size: 42.5, family: 'Verdana' })
When calling the path()
method on a text element, the text element is mutated into an intermediate between a text and a path element. From that point on the text element will also feature a plot()
method to update the path:
text.plot('M 300 500 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100')
Attributes specific to the <textPath>
element can be applied to the textPath instance itself:
text.textPath().attr('startOffset', 0.5)
And they can be animated as well of course:
text.textPath().animate(3000).attr('startOffset', 0.8)
returns
: SVG.TextPath
Javascript inheritance stack: SVG.TextPath
< SVG.Element
textPath()
Referencing the textPath node directly:
var textPath = text.textPath()
returns
: SVG.TextPath
track()
Referencing the linked path element directly:
var path = text.track()
returns
: SVG.Path
Use
The use element simply emulates another existing element. Any changes on the master element will be reflected on all the use
instances. The usage of use()
is very straightforward:
var rect = draw.rect(100, 100).fill('#f09')
var use = draw.use(rect).move(200, 200)
In the case of the example above two rects will appear on the svg drawing, the original and the use
instance. In some cases you might want to hide the original element. the best way to do this is to create the original element in the defs node:
var rect = draw.defs().rect(100, 100).fill('#f09')
var use = draw.use(rect).move(200, 200)
In this way the rect element acts as a library element. You can edit it but it won't be rendered.
Another way is to point an external SVG file, just specified the element id
and path to file.
var use = draw.use('elementId', 'path/to/file.svg')
This way is usefull when you have complex images already created.
Note that, for external images (outside your domain) it may be necessary to load the file with XHR.
returns
: SVG.Use
Javascript inheritance stack: SVG.Use
< SVG.Shape
< SVG.Element
Symbol
Not unlike the group
element, the symbol
element is a container element. The only difference between symbols and groups is that symbols are not rendered. Therefore a symbol
element is ideal in combination with the use
element:
var symbol = draw.symbol()
symbol.rect(100, 100).fill('#f09')
var use = draw.use(symbol).move(200, 200)
returns
: SVG.Bare
Javascript inheritance stack: SVG.Bare
< SVG.Element
[with a shallow inheritance from SVG.Parent
]
Bare
For all SVG elements that are not described by SVG.js, the SVG.Bare
class comes in handy. This class inherits directly from SVG.Element
and makes it possible to add custom methods in a separate namespace without polluting the main SVG.Element
namespace. Consider it your personal playground.
element()
The SVG.Bare
class can be instantiated with the element()
method on any parent element:
var element = draw.element('title')
The string value passed as the first argument is the node name that should be generated.
Additionally any existing class name can be passed as the second argument to define from which class the element should inherit:
var element = draw.element('symbol', SVG.Parent)
This gives you as the user a lot of power. But remember, with great power comes great responsibility.
returns
: SVG.Bare
words()
The SVG.Bare
instance carries an additional method to add plain text:
var element = draw.element('title').words('This is a title.')
returns
: itself
Referencing elements
By id
If you want to get an element created by SVG.js by its id, you can use the SVG.get()
method:
var element = SVG.get('my_element')
element.fill('#f06')
Using CSS selectors
There are two ways to select elements using CSS selectors.
The first is to search globally. This will search in all svg elements in a document and return them in an instance of SVG.Set
:
var elements = SVG.select('rect.my-class').fill('#f06')
The second is to search within a parent element:
var elements = group.select('rect.my-class').fill('#f06')
Using jQuery or Zepto
Another way is to use jQuery or Zepto. Here is an example:
var draw = SVG('drawing')
var group = draw.group().addClass('my-group')
var rect = group.rect(100,100).addClass('my-element')
var circle = group.circle(100).addClass('my-element').move(100, 100)
var elements = $('#drawing g.my-group .my-element').each(function() {
this.instance.animate().fill('#f09')
})
Circular reference
Every element instance within SVG.js has a reference to the actual node
:
node
element.node
returns
: node
native()
The same can be achieved with the native()
method:
element.native()
returns
: node
instance
Similar, the node carries a reference to the SVG.js instance
:
node.instance
returns
: element
Parent reference
Every element has a reference to its parent with the parent()
method:
parent()
element.parent()
returns
: element
Even the main svg document:
var draw = SVG('drawing')
draw.parent()
returns
: HTMLNode
doc()
For more specific parent filtering the doc()
method can be used:
var draw = SVG('drawing')
var rect = draw.rect(100, 100)
rect.doc()
Alternatively a class can be passed as the first argument:
var draw = SVG('drawing')
var nested = draw.nested()
var group = nested.group()
var rect = group.rect(100, 100)
rect.doc()
rect.doc(SVG.Doc)
rect.doc(SVG.Nested)
rect.doc(SVG.G)
returns
: element
Child references
first()
To get the first child of a parent element:
draw.first()
returns
: element
last()
To get the last child of a parent element:
draw.last()
returns
: element
children()
An array of all children will can be retreives with the children
method:
draw.children()
returns
: array
each()
The each()
allows you to iterate over the all children of a parent element:
draw.each(function(i, children) {
this.fill({ color: '#f06' })
})
Deep traversing is also possible by passing true as the second argument:
draw.each(function(i, children) {
this.fill({ color: '#f06' })
}, true)
Note that this
refers to the current child element.
returns
: itself
has()
Checking the existence of an element within a parent:
var rect = draw.rect(100, 50)
var group = draw.group()
draw.has(rect)
group.has(rect)
returns
: boolean
index()
Returns the index of given element and returns -1 when it is not a child:
var rect = draw.rect(100, 50)
var group = draw.group()
draw.index(rect)
group.index(rect)
returns
: number
get()
Get an element on a given position in the children array:
var rect = draw.rect(20, 30)
var circle = draw.circle(50)
draw.get(0)
draw.get(1)
returns
: element
clear()
To remove all elements from a parent element:
draw.clear()
returns
: itself
Attribute references
reference()
In cases where an element is linked to another element through an attribute, the linked element instance can be fetched with the reference()
method. The only thing required is the attribute name:
use.reference('href')
rect.reference('fill')
circle.reference('clip-path')
Import / export SVG
svg()
Exporting the full generated SVG, or a part of it, can be done with the svg()
method:
draw.svg()
Exporting works on all elements.
Importing is done with the same method:
draw.svg('<g><rect width="100" height="50" fill="#f06"></rect></g>')
Importing works on any element that inherits from SVG.Parent
, which is basically every element that can contain other elements.
getter
returns
: string
setter
returns
: itself
Manipulating elements
attr()
You can get and set an element's attributes directly using attr()
.
Get a single attribute:
rect.attr('x')
Set a single attribute:
rect.attr('x', 50)
Set multiple attributes at once:
rect.attr({
fill: '#f06'
, 'fill-opacity': 0.5
, stroke: '#000'
, 'stroke-width': 10
})
Set an attribute with a namespace:
rect.attr('x', 50, 'http://www.w3.org/2000/svg')
Explicitly remove an attribute:
rect.attr('fill', null)
getter
returns
: value
setter
returns
: itself
transform()
The transform()
method acts as a full getter without an argument:
element.transform()
The returned object
contains the following values:
x
(translation on the x-axis)y
(translation on the y-axis)skewX
(calculated skew on x-axis)skewY
(calculated skew on y-axis)scaleX
(calculated scale on x-axis)scaleY
(calculated scale on y-axis)rotation
(calculated rotation)cx
(last used rotation centre on x-axis)cy
(last used rotation centre on y-axis)
Additionally a string value for the required property can be passed:
element.transform('rotation')
In this case the returned value is a number
.
As a setter it has two ways of working. By default transformations are absolute. For example, if you call:
element.transform({ rotation: 125 }).transform({ rotation: 37.5 })
The resulting rotation will be 37.5
and not the sum of the two transformations. But if that's what you want there is a way out by adding the relative
parameter. That would be:
element.transform({ rotation: 125 }).transform({ rotation: 37.5, relative: true })
Alternatively a relative flag can be passed as the second argument:
element.transform({ rotation: 125 }).transform({ rotation: 37.5 }, true)
Available transformations are:
rotation
with optional cx
and cy
scale
with optional cx
and cy
scaleX
with optional cx
and cy
scaleY
with optional cx
and cy
skewX
with optional cx
and cy
skewY
with optional cx
and cy
x
y
a
, b
, c
, d
, e
and/or f
or an existing matrix instead of the object
getter
returns
: value
setter
returns
: itself
style()
With the style()
method the style
attribute can be managed like attributes with attr
:
rect.style('cursor', 'pointer')
Multiple styles can be set at once using an object:
rect.style({ cursor: 'pointer', fill: '#f03' })
Or a css string:
rect.style('cursor:pointer;fill:#f03;')
Similar to attr()
the style()
method can also act as a getter:
rect.style('cursor')
Or even a full getter:
rect.style()
Explicitly deleting individual style definitions works the same as with the attr()
method:
rect.style('cursor', null)
getter
returns
: value
setter
returns
: itself
classes()
Fetches an array of css classes on the node:
rect.classes()
getter
returns
: array
hasClass()
Test the presence of a given css class:
rect.hasClass('purple-rain')
getter
returns
: boolean
addClass()
Adds a given css class:
rect.addClass('pink-flower')
setter
returns
: itself
removeClass()
Removes a given css class:
rect.removeClass('pink-flower')
setter
returns
: itself
toggleClass()
Toggles a given css class:
rect.toggleClass('pink-flower')
setter
returns
: itself
move()
Move the element to a given x
and y
position by its upper left corner:
rect.move(200, 350)
Note that you can also use the following code to move some elements (like images and rects) around:
rect.attr({ x: 20, y: 60 })
Although move()
is much more convenient because it will always use the upper left corner as the position reference, whereas with using attr()
the x
and y
reference differ between element types. For example, rect uses the upper left corner with the x
and y
attributes, circle and ellipse use their center with the cx
and cy
attributes and thereby simply ignoring the x
and y
values you might assign.
returns
: itself
x()
Move element only along x-axis by its upper left corner:
rect.x(200)
Without an argument the x()
method serves as a getter as well:
rect.x()
getter
returns
: value
setter
returns
: itself
y()
Move element only along y-axis by its upper left corner:
rect.y(350)
Without an argument the y()
method serves as a getter as well:
rect.y()
getter
returns
: value
setter
returns
: itself
dmove()
Move the element to a given x
and y
position relative to its current position:
rect.dmove(10, 30)
returns
: itself
dx()
Move element only along x-axis relative to its current position:
rect.dx(200)
returns
: itself
dy()
Move element only along y-axis relative to its current position:
rect.dy(200)
returns
: itself
center()
This is an extra method to move an element by its center:
rect.center(150, 150)
returns
: itself
cx()
Move element only along x-axis by its center:
rect.cx(200)
Without an argument the cx()
method serves as a getter as well:
rect.cx()
getter
returns
: value
setter
returns
: itself
cy()
Move element only along y-axis by its center:
rect.cy(350)
Without an argument the cy()
method serves as a getter as well:
rect.cy()
getter
returns
: value
setter
returns
: itself
size()
Set the size of an element by a given width
and height
:
rect.size(200, 300)
Proportional resizing is also possible by leaving out height
:
rect.size(200)
Or by passing null
as the value for width
:
rect.size(null, 200)
Same as with move()
the size of an element could be set by using attr()
. But because every type of element is handles its size differently the size()
method is much more convenient.
There is one exceptions though, the SVG.Text
only takes one argument and applies the given value to the font-size
attribute.
returns
: itself
width()
Set only width of an element:
rect.width(200)
This method also acts as a getter:
rect.width()
getter
returns
: value
setter
returns
: itself
height()
Set only height of an element:
rect.height(325)
This method also acts as a getter:
rect.height()
getter
returns
: value
setter
returns
: itself
hide()
Hide element:
rect.hide()
returns
: itself
show()
Show element:
rect.show()
returns
: itself
visible()
To check if the element is visible:
rect.visible()
returns
: boolean
clone()
To make an exact copy of an element the clone()
method comes in handy:
var clone = rect.clone()
returns
: element
This will create an new, unlinked copy. If you want to make a linked clone have a look at the use element.
remove()
Pretty straightforward:
rect.remove()
returns
: itself
replace()
This method will replace the called element with the given element in the same position in the stack:
rect.replace(draw.circle(100))
returns
: element
Inserting elements
add()
Elements can be moved between parents via the add()
method on any parent:
var rect = draw.rect(100, 100)
var group = draw.group()
group.add(rect)
returns
: itself
put()
Where the add()
method returns the parent itself, the put()
method returns the given element:
group.put(rect)
returns
: element
addTo()
Similar to the add()
method on a parent element, elements have the addTo()
method:
rect.addTo(group)
returns
: itself
putIn()
Similar to the put()
method on a parent element, elements have the putIn()
method:
rect.putIn(group)
returns
: element
Geometry
viewbox()
The viewBox
attribute of an <svg>
element can be managed with the viewbox()
method. When supplied with four arguments it will act as a setter:
draw.viewbox(0, 0, 297, 210)
Alternatively you can also supply an object as the first argument:
draw.viewbox({ x: 0, y: 0, width: 297, height: 210 })
Without any arguments an instance of SVG.ViewBox
will be returned:
var box = draw.viewbox()
But the best thing about the viewbox()
method is that you can get the zoom of the viewbox:
var box = draw.viewbox()
var zoom = box.zoom
If the size of the viewbox equals the size of the svg drawing, the zoom value will be 1.
getter
returns
: SVG.ViewBox
setter
returns
: itself
bbox()
Get the bounding box of an element. This is a wrapper for the native getBBox()
method but adds more values:
path.bbox()
This will return an instance of SVG.BBox
containing the following values:
width
(value from native getBBox
)height
(value from native getBBox
)w
(shorthand for width
)h
(shorthand for height
)x
(value from native getBBox
)y
(value from native getBBox
)cx
(center x
of the bounding box)cy
(center y
of the bounding box)x2
(lower right x
of the bounding box)y2
(lower right y
of the bounding box)
The SVG.BBox
has one other nifty little feature, enter the merge()
method. With merge()
two SVG.BBox
instances can be merged into one new instance, basically being the bounding box of the two original bounding boxes:
var box1 = draw.rect(100,100).move(50,50)
var box2 = draw.rect(100,100).move(200,200)
var box3 = box1.merge(box2)
returns
: SVG.BBox
tbox()
Where bbox()
returns a bounding box mindless of any transformations, the tbox()
method does take transformations into account. So any translation or scale will be applied to the resulting values to get closer to the actual visual representation:
path.tbox()
This will return an instance of SVG.TBox
containing the following values:
width
(value from native getBBox influenced by the scaleX
of the current matrix)height
(value from native getBBox influenced by the scaleY
of the current matrix)w
(shorthand for width
)h
(shorthand for height
)x
(value from native getBBox influenced by the x
of the current matrix)y
(value from native getBBox influenced by the y
of the current matrix)cx
(center x
of the bounding box)cy
(center y
of the bounding box)x2
(lower right x
of the bounding box)y2
(lower right y
of the bounding box)
Note that the rotation of the element will not be added to the calculation.
returns
: SVG.TBox
rbox()
Is similar to bbox()
but will give you the box around the exact visual representation of the element, taking all transformations into account.
path.rbox()
This will return an instance of SVG.RBox
containing the following values:
width
(the actual visual width)height
(the actual visual height)w
(shorthand for width
)h
(shorthand for height
)x
(the actual visual position on the x-axis)y
(the actual visual position on the y-axis)cx
(center x
of the bounding box)cy
(center y
of the bounding box)x2
(lower right x
of the bounding box)y2
(lower right y
of the bounding box)
Important: Mozilla browsers include stroke widths where other browsers do not. Therefore the resulting box might be different in Mozulla browsers. It is very hard to modify this behavior so for the time being this is an inconvenience we have to live with.
returns
: SVG.RBox
ctm()
Retreives the current transform matrix of the element:
path.ctm()
returns
: SVG.Matrix
inside()
To check if a given point is inside the bounding box of an element you can use the inside()
method:
var rect = draw.rect(100, 100).move(50, 50)
rect.inside(25, 30)
rect.inside(60, 70)
Note: the x
and y
positions are tested against the relative position of the element. Any offset on the parent element is not taken into account.
returns
: boolean
length()
Get the total length of a path element:
var length = path.length()
returns
: number
pointAt()
Get point on a path at given length:
var point = path.pointAt(105)
returns
: object
Animating elements
Animatable method chain
Note that the animate()
method will not return the targeted element but an instance of SVG.FX which will take the following methods:
Of course attr()
:
rect.animate().attr({ fill: '#f03' })
The x()
, y()
and move()
methods:
rect.animate().move(100, 100)
And the cx()
, cy()
and center()
methods:
rect.animate().center(200, 200)
If you include the sugar.js module, fill()
, stroke()
, rotate()
, skew()
, scale()
, matrix()
, opacity()
, radius()
will be available as well:
rect.animate().rotate(45).skew(25, 0)
You can also animate non-numeric unit values using the attr()
method:
rect.attr('x', '10%').animate().attr('x', '50%')
easing
All available ease types are:
<>
: ease in and out>
: ease out<
: ease in-
: linear=
: external control- a function
For the latter, here is an example of the default <>
function:
function(pos) { return (-Math.cos(pos * Math.PI) / 2) + 0.5 }
For more easing equations, have a look at the svg.easing.js plugin.
animate()
Animating elements is very much the same as manipulating elements, the only difference is you have to include the animate()
method:
rect.animate().move(150, 150)
The animate()
method will take three arguments. The first is duration
, the second ease
and the third delay
:
rect.animate(2000, '>', 1000).attr({ fill: '#f03' })
Alternatively you can pass an object as the first argument:
rect.animate({ ease: '<', delay: '1.5s' }).attr({ fill: '#f03' })
By default duration
will be set to 1000
, ease
will be set to <>
.
returns
: SVG.FX
pause()
Pausing an animations is fairly straightforward:
rect.animate().move(200, 200)
rect.mouseover(function() { this.pause() })
returns
: itself
play()
Will start playing a paused animation:
rect.animate().move(200, 200)
rect.mouseover(function() { this.pause() })
rect.mouseout(function() { this.play() })
returns
: itself
stop()
Animations can be stopped in two ways.
By calling the stop()
method:
rect.animate().move(200, 200)
rect.stop()
Or by invoking another animation:
rect.animate().move(200, 200)
rect.animate().center(200, 200)
By calling stop()
, the transition is left at its current position. By passing true
as the first argument to stop()
, the animation will be fulfilled instantly:
rect.animate().move(200, 200)
rect.stop(true)
Stopping an animation is irreversable.
returns
: itself
during()
If you want to perform your own actions during the animations you can use the during()
method:
var position
, from = 100
, to = 300
rect.animate(3000).move(100, 100).during(function(pos) {
position = from + (to - from) * pos
})
Note that pos
is 0
in the beginning of the animation and 1
at the end of the animation.
To make things easier a morphing function is passed as the second argument. This function accepts a from
and to
value as the first and second argument and they can be a number, unit or hex color:
var ellipse = draw.ellipse(100, 100).attr('cx', '20%').fill('#333')
rect.animate(3000).move(100, 100).during(function(pos, morph) {
ellipse.size(morph(100, 200), morph(100, 50))
ellipse.attr('cx', morph('20%', '80%'))
ellipse.fill(morph('#333', '#ff0066'))
})
returns
: SVG.FX
loop()
By default the loop()
method creates and eternal loop:
rect.animate(3000).move(100, 100).loop()
But the loop can also be a predefined number of times:
rect.animate(3000).move(100, 100).loop(3)
Loops go from beginning to end and start over again (0->1.0->1.0->1.
).
There is also a reverse flag that should be passed as the second argument:
rect.animate(3000).move(100, 100).loop(3, true)
Loops will then be completely reversed before starting over (0->1->0->1->0->1.
).
returns
: SVG.FX
after()
Finally, you can add callback methods using after()
:
rect.animate(3000).move(100, 100).after(function() {
this.animate().attr({ fill: '#f06' })
})
Note that the after()
method will never be called if the animation is looping eternally.
returns
: SVG.FX
at()
Say you want to control the position of an animation with an external event, then the at()
method will proove very useful:
var animation = draw.rect(100, 100).move(50, 50).animate('=').move(200, 200)
document.onmousemove = function(event) {
animation.at(event.clientX / 1000)
}
In order to be able to use the at()
method, the duration of the animation should be set to '='
. The value passed as the first argument of at()
should be a number between 0
and 1
, 0
being the beginning of the animation and 1
being the end. Note that any values below 0
and above 1
will be normalized.
This functionality requires the fx.js module which is included in the default distribution.
returns
: SVG.FX
situation
The current situation of an animation is stored in the situation
object:
rect.animate(3000).move(100, 100)
rect.fx.situation
Available values are:
start
(start time as a number in milliseconds)play
(animation playing or not; true
or false
)pause
(time when the animation was last paused)duration
(the chosen duration of the animation)ease
(the chosen easing calculation)finish
(start + duration)loop
(the current loop; counting down if a number; true
, false
or a number)loops
(if a number, the total number loops; true
, false
or a number)reverse
(whether or not the loop should be reversed; true
or false
)reversing
(true
if the loop is currently reversing, otherwise false
)during
(the function that should be called on every keyframe)after
(the function that should be called after completion)
Syntax sugar
Fill and stroke are used quite often. Therefore two convenience methods are provided:
fill()
The fill()
method is a pretty alternative to the attr()
method:
rect.fill({ color: '#f06', opacity: 0.6 })
A single hex string will work as well:
rect.fill('#f06')
Last but not least, you can also use an image as fill, simply by passing an image url:
rect.fill('images/shade.jpg')
Or if you want more control over the size of the image, you can pass an image instance as well:
rect.fill(draw.image('images/shade.jpg', 20, 20))
returns
: itself
stroke()
The stroke()
method is similar to fill()
:
rect.stroke({ color: '#f06', opacity: 0.6, width: 5 })
Like fill, a single hex string will work as well:
rect.stroke('#f06')
Not unlike the fill()
method, you can also use an image as stroke, simply by passing an image url:
rect.stroke('images/shade.jpg')
Or if you want more control over the size of the image, you can pass an image instance as well:
rect.stroke(draw.image('images/shade.jpg', 20, 20))
returns
: itself
opacity()
To set the overall opacity of an element:
rect.opacity(0.5)
returns
: itself
rotate()
The rotate()
method will automatically rotate elements according to the center of the element:
rect.rotate(45)
Although you can also define a specific rotation point:
rect.rotate(45, 50, 50)
returns
: itself
skew()
The skew()
method will take an x
and y
value:
rect.skew(0, 45)
returns
: itself
scale()
The scale()
method will take an x
and y
value:
rect.scale(0.5, -1)
returns
: itself
translate()
The translate()
method will take an x
and y
value:
rect.translate(0.5, -1)
radius()
Rects and ellipses have a radius()
method. On rects it defines rounded corners, on ellipses the radii:
rect.radius(10)
This will set the rx
and ry
attributes to 10
. To set rx
and ry
individually:
rect.radius(10, 20)
This functionality requires the sugar.js module which is included in the default distribution.
returns
: itself
Masking elements
maskWith()
The easiest way to mask is to use a single element:
var ellipse = draw.ellipse(80, 40).move(10, 10).fill({ color: '#fff' })
rect.maskWith(ellipse)
returns
: itself
mask()
But you can also use multiple elements:
var ellipse = draw.ellipse(80, 40).move(10, 10).fill({ color: '#fff' })
var text = draw.text('SVG.JS').move(10, 10).font({ size: 36 }).fill({ color: '#fff' })
var mask = draw.mask().add(text).add(ellipse)
rect.maskWith(mask)
If you want the masked object to be rendered at 100% you need to set the fill color of the masking object to white. But you might also want to use a gradient:
var gradient = draw.gradient('linear', function(stop) {
stop.at({ offset: 0, color: '#000' })
stop.at({ offset: 1, color: '#fff' })
})
var ellipse = draw.ellipse(80, 40).move(10, 10).fill({ color: gradient })
rect.maskWith(ellipse)
returns
: SVG.Mask
unmask()
Unmasking the elements can be done with the unmask()
method:
rect.unmask()
The unmask()
method returns the masking element.
returns
: itself
remove()
Removing the mask alltogether will also unmask()
all masked elements as well:
mask.remove()
returns
: itself
masker
For your convenience, the masking element is also referenced in the masked element. This can be useful in case you want to change the mask:
rect.masker.fill('#fff')
This functionality requires the mask.js module which is included in the default distribution.
Clipping elements
Clipping elements works exactly the same as masking elements. The only difference is that clipped elements will adopt the geometry of the clipping element. Therefore events are only triggered when entering the clipping element whereas with masks the masked element triggers the event. Another difference is that masks can define opacity with their fill color and clipPaths don't.
clipWith()
var ellipse = draw.ellipse(80, 40).move(10, 10)
rect.clipWith(ellipse)
returns
: itself
clip()
Clip multiple elements:
var ellipse = draw.ellipse(80, 40).move(10, 10)
var text = draw.text('SVG.JS').move(10, 10).font({ size: 36 })
var clip = draw.clip().add(text).add(ellipse)
rect.clipWith(clip)
returns
: SVG.ClipPath
unclip()
Unclipping the elements can be done with the unclip()
method:
rect.unclip()
returns
: itself
remove()
Removing the clip alltogether will also unclip()
all clipped elements as well:
clip.remove()
returns
: itself
clipper
For your convenience, the clipping element is also referenced in the clipped element. This can be useful in case you want to change the clipPath:
rect.clipper.move(10, 10)
This functionality requires the clip.js module which is included in the default distribution.
Arranging elements
You can arrange elements within their parent SVG document using the following methods.
front()
Move element to the front:
rect.front()
returns
: itself
back()
Move element to the back:
rect.back()
returns
: itself
forward()
Move element one step forward:
rect.forward()
returns
: itself
backward()
Move element one step backward:
rect.backward()
returns
: itself
siblings()
The arrange.js module brings some additional methods. To get all siblings of rect, including rect itself:
rect.siblings()
returns
: array
position()
Get the position (a number) of rect between its siblings:
rect.position()
returns
: number
next()
Get the next sibling:
rect.next()
returns
: element
previous()
Get the previous sibling:
rect.previous()
returns
: element
before()
Insert an element before another:
rect.before(circle)
returns
: itself
after()
Insert an element after another:
rect.after(circle)
returns
: itself
This functionality requires the arrange.js module which is included in the default distribution.
Sets
Sets are very useful if you want to modify or animate multiple elements at once. A set will accept all the same methods accessible on individual elements, even the ones that you add with your own plugins! Creating a set is exactly as you would expect:
var rect = draw.rect(100,100)
var circle = draw.circle(100).move(100,100).fill('#f09')
var set = draw.set()
set.add(rect).add(circle)
set.fill('#ff0')
A single element can be a member of many sets. Sets also don't have a structural representation, in fact they are just fancy array's.
add()
Add an element to a set:
set.add(rect)
Quite a useful feature of sets is the ability to accept multiple elements at once:
set.add(rect, circle)
returns
: itself
each()
Iterating over all members in a set is the same as with svg containers:
set.each(function(i) {
this.attr('id', 'shiny_new_id_' + i)
})
Note that this
refers to the current child element.
returns
: itself
has()
Determine if an element is member of the set:
set.has(rect)
returns
: boolean
index()
Returns the index of a given element in the set.
set.index(rect)
returns
: number
get()
Gets the element at a given index:
set.get(1)
returns
: element
first()
Gets the first element:
set.first()
returns
: element
last()
Gets the last element:
set.last()
returns
: element
bbox()
Get the bounding box of all elements in the set:
set.bbox()
returns
: SVG.BBox
remove()
To remove an element from a set:
set.remove(rect)
returns
: itself
clear()
Or to remove all elements from a set:
set.clear()
returns
: itself
animate()
Sets work with animations as well:
set.animate(3000).fill('#ff0')
returns
: SVG.SetFX
Gradient
gradient()
There are linear and radial gradients. The linear gradient can be created like this:
var gradient = draw.gradient('linear', function(stop) {
stop.at(0, '#333')
stop.at(1, '#fff')
})
returns
: SVG.Gradient
at()
The offset
and color
parameters are required for stops, opacity
is optional. Offset is float between 0 and 1, or a percentage value (e.g. 33%
).
stop.at(0, '#333')
or
stop.at({ offset: 0, color: '#333', opacity: 1 })
returns
: itself
from()
To define the direction you can set from x
, y
and to x
, y
:
gradient.from(0, 0).to(0, 1)
The from and to values are also expressed in percent.
returns
: itself
to()
To define the direction you can set from x
, y
and to x
, y
:
gradient.from(0, 0).to(0, 1)
The from and to values are also expressed in percent.
returns
: itself
radius()
Radial gradients have a radius()
method to define the outermost radius to where the inner color should develop:
var gradient = draw.gradient('radial', function(stop) {
stop.at(0, '#333')
stop.at(1, '#fff')
})
gradient.from(0.5, 0.5).to(0.5, 0.5).radius(0.5)
returns
: itself
update()
A gradient can also be updated afterwards:
gradient.update(function(stop) {
stop.at(0.1, '#333', 0.2)
stop.at(0.9, '#f03', 1)
})
And even a single stop can be updated:
var s1, s2, s3
draw.gradient('radial', function(stop) {
s1 = stop.at(0, '#000')
s2 = stop.at(0.5, '#f03')
s3 = stop.at(1, '#066')
})
s1.update(0.1, '#0f0', 1)
returns
: itself
get()
The get()
method makes it even easier to get a stop from an existing gradient:
var gradient = draw.gradient('radial', function(stop) {
stop.at({ offset: 0, color: '#000', opacity: 1 })
stop.at({ offset: 0.5, color: '#f03', opacity: 1 })
stop.at({ offset: 1, color: '#066', opacity: 1 })
})
var s1 = gradient.get(0)
returns
: SVG.Stop
fill()
Finally, to use the gradient on an element:
rect.attr({ fill: gradient })
Or:
rect.fill(gradient)
By passing the gradient instance as the fill on any element, the fill()
method will be called:
gradient.fill()
W3Schools has a great example page on how
linear gradients and
radial gradients work.
This functionality requires the gradient.js module which is included in the default distribution.
returns
: value
Pattern
pattern()
Creating a pattern is very similar to creating gradients:
var pattern = draw.pattern(20, 20, function(add) {
add.rect(20,20).fill('#f06')
add.rect(10,10)
add.rect(10,10).move(10,10)
})
This creates a checkered pattern of 20 x 20 pixels. You can add any available element to your pattern.
returns
: SVG.Pattern
update()
A pattern can also be updated afterwards:
pattern.update(function(add) {
add.circle(15).center(10,10)
})
returns
: itself
fill()
Finally, to use the pattern on an element:
rect.attr({ fill: pattern })
Or:
rect.fill(pattern)
By passing the pattern instance as the fill on any element, the fill()
method will be called on th pattern instance:
pattern.fill()
returns
: value
Marker
marker()
Markers can be added to every individual point of a line
, polyline
, polygon
and path
. There are three types of markers: start
, mid
and end
. Where start
represents the first point, end
the last and mid
every point in between.
var path = draw.path('M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100z')
path.fill('none').stroke({ width: 1 })
path.marker('start', 10, 10, function(add) {
add.circle(10).fill('#f06')
})
path.marker('mid', 10, 10, function(add) {
add.rect(10, 10)
})
path.marker('end', 20, 20, function(add) {
add.circle(6).center(4, 5)
add.circle(6).center(4, 15)
add.circle(6).center(16, 10)
this.fill('#0f6')
})
The marker()
method can be used in three ways. Firstly, a marker can be created on any container element (e.g. svg, nested, group, ...). This is useful if you plan to reuse the marker many times so it will create a marker in the defs but not show it yet:
var marker = draw.marker(10, 10, function(add) {
add.rect(10, 10)
})
Secondly a marker can be created and applied directly on its target element:
path.marker('start', 10, 10, function(add) {
add.circle(10).fill('#f06')
})
This will create a marker in the defs and apply it directly. Note that the first argument defines the position of the marker and that there are four arguments as opposed to three with the first example.
Lastly, if a marker is created for reuse on a container element, it can be applied directly on the target element:
path.marker('mid', marker)
Finally, to get a marker instance from the target element reference:
path.reference('marker-end')
ref()
By default the refX
and refY
attributes of a marker are set to respectively half the width
nd height
values. To define the refX
and refY
of a marker differently:
marker.ref(2, 7)
returns
: itself
update()
Updating the contents of a marker will clear()
the existing content and add the content defined in the block passed as the first argument:
marker.update(function(add) {
add.circle(10)
})
returns
: itself
width()
Defines the markerWidth
attribute:
marker.width(10)
returns
: itself
height()
Defines the markerHeight
attribute:
marker.height(10)
returns
: itself
size()
Defines the markerWidth
and markerHeight
attributes:
marker.size(10, 10)
returns
: itself
Data
Setting
The data()
method allows you to bind arbitrary objects, strings and numbers to SVG elements:
rect.data('key', { value: { data: 0.3 }})
Or set multiple values at once:
rect.data({
forbidden: 'fruit'
, multiple: {
values: 'in'
, an: 'object'
}
})
returns
: itself
Getting
Fetching the values is similar to the attr()
method:
rect.data('key')
returns
: itself
Removing
Removing the data altogether:
rect.data('key', null)
returns
: itself
Sustaining data types
Your values will always be stored as JSON and in some cases this might not be desirable. If you want to store the value as-is, just pass true as the third argument:
rect.data('key', 'value', true)
returns
: itself
Memory
remember()
Storing data in-memory is very much like setting attributes:
rect.remember('oldBBox', rect.bbox())
Multiple values can also be remembered at once:
rect.remember({
oldFill: rect.attr('fill')
, oldStroke: rect.attr('stroke')
})
To retrieve a memory
rect.remember('oldBBox')
returns
: itself
forget()
Erasing a single memory:
rect.forget('oldBBox')
Or erasing multiple memories at once:
rect.forget('oldFill', 'oldStroke')
And finally, just erasing the whole memory:
rect.forget()
returns
: itself
Events
Basic events
Events can be bound to elements as follows:
rect.click(function() {
this.fill({ color: '#f06' })
})
Removing it is quite as easy:
rect.click(null)
All available events are: click
, dblclick
, mousedown
, mouseup
, mouseover
, mouseout
, mousemove
, touchstart
, touchmove
, touchleave
, touchend
and touchcancel
.
returns
: itself
Event listeners
You can also bind event listeners to elements:
var click = function() {
this.fill({ color: '#f06' })
}
rect.on('click', click)
returns
: itself
Unbinding events is just as easy:
rect.off('click', click)
Or to unbind all listeners for a given event:
rect.off('click')
Or even unbind all listeners for all events:
rect.off()
returns
: itself
But there is more to event listeners. You can bind events to html elements as well:
SVG.on(window, 'click', click)
Obviously unbinding is practically the same:
SVG.off(window, 'click', click)
Custom events
You can even use your own events.
Just add an event listener for your event:
rect.on('myevent', function() {
alert('ta-da!')
})
Now you are ready to fire the event whenever you need:
function whenSomethingHappens() {
rect.fire('myevent')
}
You can also pass some data to the event:
function whenSomethingHappens() {
rect.fire('myevent', {some:'data'})
}
rect.on('myevent', function(e) {
alert(e.detail.some)
})
svg.js supports namespaced events following the syntax event.namespace
.
A namespaced event behaves like a normal event with the difference that you can remove it without touching handlers from other namespaces.
// attach
rect.on('myevent.namespace', function(e) {
// do something
})
// detach all handlers of namespace
rect.off('myevent.namespace')
// detach all handlers including all namespaces
rect.off('myevent)
However you can't fire a specific namespaced event. Calling rect.fire('myevent.namespace')
won't do anything while rect.fire('myevent')
works and fires all attached handlers of the event
Important: always make sure you namespace your event to avoid conflicts. Preferably use something very specific. So event.wicked
for example would be better than something generic like event.svg
.
Numbers
Numbers in SVG.js have a dedicated number class to be able to process string values. Creating a new number is simple:
var number = new SVG.Number('78%')
number.plus('3%').toString()
number.valueOf()
Operators are defined as methods on the SVG.Number
instance.
plus()
Addition:
number.plus('3%')
returns
: SVG.Number
minus()
Subtraction:
number.minus('3%')
returns
: SVG.Number
times()
Multiplication:
number.times(2)
returns
: SVG.Number
divide()
Division:
number.divide('3%')
returns
: SVG.Number
to()
Change number to another unit:
number.to('px')
returns
: SVG.Number
morph()
Make a number morphable:
number.morph('11%')
returns
: itself
at()
Get morphable number at given position:
var number = new SVG.Number('79%').morph('3%')
number.at(0.55).toString()
returns
: SVG.Number
Colors
Svg.js has a dedicated color class handling different types of colors. Accepted values are:
- hex string; three based (e.g. #f06) or six based (e.g. #ff0066)
new SVG.Color('#f06')
- rgb string; e.g. rgb(255, 0, 102)
new SVG.Color('rgb(255, 0, 102)')
- rgb object; e.g. { r: 255, g: 0, b: 102 }
new SVG.Color({ r: 255, g: 0, b: 102 })
Note that when working with objects is important to provide all three values every time.
The SVG.Color
instance has a few methods of its own.
toHex()
Get hex value:
color.toHex()
returns
: hex color string
toRgb()
Get rgb string value:
color.toRgb()
returns
: rgb color string
brightness()
Get the brightness of a color:
color.brightness()
This is the perceived brighness where 0
is black and 1
is white.
returns
: number
morph()
Make a color morphable:
color.morph('#000')
returns
: itself
at()
Get morphable color at given position:
var color = new SVG.Color('#ff0066').morph('#000')
color.at(0.5).toHex()
returns
: SVG.Color
Arrays
In SVG.js every value list string can be cast and passed as an array. This makes writing them more convenient but also adds a lot of key functionality to them.
SVG.Array
Is for simple, whitespace separated value strings:
'0.343 0.669 0.119 0 0 0.249 -0.626 0.13 0 0 0.172 0.334 0.111 0 0 0 0 0 1 0'
Can also be passed like this in a more manageable format:
new SVG.Array([ .343, .669, .119, 0, 0
, .249, -.626, .130, 0, 0
, .172, .334, .111, 0, 0
, .000, .000, .000, 1, -0 ])
SVG.PointArray
Is a bit more complex and is used for polyline and polygon elements. This is a poly-point string:
'0,0 100,100'
The dynamic representation:
[
[0, 0]
, [100, 100]
]
Precompiling it as an SVG.PointArray
:
new SVG.PointArray([
[0, 0]
, [100, 100]
])
Note that every instance of SVG.Polyline
and SVG.Polygon
carries a reference to the SVG.PointArray
instance:
polygon.array()
Javascript inheritance stack: SVG.PointArray
< SVG.Array
SVG.PathArray
Path arrays carry arrays representing every segment in a path string:
'M0 0L100 100z'
The dynamic representation:
[
['M', 0, 0]
, ['L', 100, 100]
, ['z']
]
Precompiling it as an SVG.PathArray
:
new SVG.PathArray([
['M', 0, 0]
, ['L', 100, 100]
, ['z']
])
Note that every instance of SVG.Path
carries a reference to the SVG.PathArray
instance:
path.array()
Syntax
The syntax for patharrays is very predictable. They are basically literal representations in the form of two dimentional arrays.
Move To
Original syntax is M0 0
or m0 0
. The SVG.js syntax ['M',0,0]
or ['m',0,0]
.
Line To
Original syntax is L100 100
or l100 100
. The SVG.js syntax ['L',100,100]
or ['l',100,100]
.
Horizontal line
Original syntax is H200
or h200
. The SVG.js syntax ['H',200]
or ['h',200]
.
Vertical line
Original syntax is V300
or v300
. The SVG.js syntax ['V',300]
or ['v',300]
.
Bezier curve
Original syntax is C20 20 40 20 50 10
or c20 20 40 20 50 10
. The SVG.js syntax ['C',20,20,40,20,50,10]
or ['c',20,20,40,20,50,10]
.
Or mirrored with S
:
Original syntax is S40 20 50 10
or s40 20 50 10
. The SVG.js syntax ['S',40,20,50,10]
or ['s',40,20,50,10]
.
Or quadratic with Q
:
Original syntax is Q20 20 50 10
or q20 20 50 10
. The SVG.js syntax ['Q',20,20,50,10]
or ['q',20,20,50,10]
.
Or a complete shortcut with T
:
Original syntax is T50 10
or t50 10
. The SVG.js syntax ['T',50,10]
or ['t',50,10]
.
Arc
Original syntax is A 30 50 0 0 1 162 163
or a 30 50 0 0 1 162 163
. The SVG.js syntax ['A',30,50,0,0,1,162,163]
or ['a',30,50,0,0,1,162,163]
.
Close
Original syntax is Z
or z
. The SVG.js syntax ['Z']
or ['z']
.
The best documentation on paths can be found at https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths.
Javascript inheritance stack: SVG.PathArray
< SVG.Array
morph()
In order to animate array values the morph()
method lets you pass a destination value. This can be either the string value, a plain array or an instance of the same type of SVG.js array:
var array = new SVG.PointArray([[0, 0], [100, 100]])
array.morph('100,0 0,100 200,200')
This method will prepare the array ensuring both the source and destination arrays have the same length.
Note that this method is currently not available on SVG.PathArray
but will be soon.
returns
: itself
at()
This method will morph the array to a given position between 0
and 1
. Continuing with the previous example:
array.at(0.27).toString()
Note that this method is currently not available on SVG.PathArray
but will be soon.
returns
: new instance
settle()
When morphing is done the settle()
method will eliminate any transitional points like duplicates:
array.settle()
Note that this method is currently not available on SVG.PathArray
but will be soon.
returns
: itself
move()
Moves geometry of the array with the given x
and y
values:
var array = new SVG.PointArray([[0, 0], [100, 100]])
array.move(33,75)
array.toString()
Note that this method is only available on SVG.PointArray
and SVG.PathArray
returns
: itself
size()
Resizes geometry of the array by the given width
and height
values:
var array = new SVG.PointArray([[0, 0], [100, 100]])
array.move(100,100).size(222,333)
array.toString()
Note that this method is only available on SVG.PointArray
and SVG.PathArray
returns
: itself
reverse()
Reverses the order of the array:
var array = new SVG.PointArray([[0, 0], [100, 100]])
array.reverse()
array.toString()
returns
: itself
bbox()
Gets the bounding box of the geometry of the array:
array.bbox()
Note that this method is only available on SVG.PointArray
and SVG.PathArray
returns
: object
Matrices
Matrices in SVG.js have their own class SVG.Matrix
, wrapping the native SVGMatrix
. They add a lot of functionality like extracting transform values, matrix morphing and improvements on the native methods.
SVG.Matrix
In SVG.js matrices accept various values on initialization.
Without a value:
var matrix = new SVG.Matrix
matrix.toString()
Six arguments:
var matrix = new SVG.Matrix(1, 0, 0, 1, 100, 150)
matrix.toString()
A string value:
var matrix = new SVG.Matrix('1,0,0,1,100,150')
matrix.toString()
An object value:
var matrix = new SVG.Matrix({ a: 1, b: 0, c: 0, d: 1, e: 100, f: 150 })
matrix.toString()
A native SVGMatrix
:
var svgMatrix = svgElement.getCTM()
var matrix = new SVG.Matrix(svgMatrix)
matrix.toString()
Even an instance of SVG.Element
:
var rect = draw.rect(50, 25)
var matrix = new SVG.Matrix(rect)
matrix.toString()
Gets the calculated values of the matrix as an object:
matrix.extract()
The returned object contains the following values:
x
(translation on the x-axis)y
(translation on the y-axis)skewX
(calculated skew on x-axis)skewY
(calculated skew on y-axis)scaleX
(calculated scale on x-axis)scaleY
(calculated scale on y-axis)rotation
(calculated rotation)
returns
: object
clone()
Returns an exact copy of the matrix:
matrix.clone()
returns
: SVG.Matrix
morph()
In order to animate matrices the morph()
method lets you pass a destination matrix. This can be any value a SVG.Matrix
would accept on initialization:
matrix.morph('matrix(2,0,0,2,100,150)')
returns
: itself
at()
This method will morph the matrix to a given position between 0
and 1
:
matrix.at(0.27)
This will only work when a destination matirx is defined using the morph()
method.
returns
: SVG.Matrix
multiply()
Multiplies by another given matrix:
matrix.matrix(matrix2)
returns
: SVG.Matrix
inverse()
Creates an inverted matix:
matrix.inverse()
returns
: SVG.Matrix
translate()
Translates matrix by a given x and y value:
matrix.translate(10, 20)
returns
: SVG.Matrix
scale()
Scales matrix uniformal with one value:
matrix.scale(2)
Scales matrix non-uniformal with two values:
matrix.scale(2, 3)
Scales matrix uniformal on a given center point with three values:
matrix.scale(2, 100, 150)
Scales matrix non-uniformal on a given center point with four values:
matrix.scale(2, 3, 100, 150)
returns
: SVG.Matrix
rotate()
Rotates matrix by degrees with one value given:
matrix.rotate(45)
Rotates a matrix by degrees around a given point with three values:
matrix.rotate(45, 100, 150)
returns
: SVG.Matrix
flip()
Flips matrix over a given axis:
matrix.flip('x')
or
matrix.flip('y')
By default elements are flipped over their center point. The flip axis position can be defined with the second argument:
matrix.flip('x', 150)
or
matrix.flip('y', 100)
returns
: SVG.Matrix
skew()
Skews matrix a given degrees over x and or y axis with two values:
matrix.skew(0, 45)
Skews matrix a given degrees over x and or y axis on a given point with four values:
matrix.skew(0, 45, 150, 100)
returns
: SVG.Matrix
around()
Performs a given matrix transformation around a given center point:
matrix.around(100, 150, new SVG.Matrix().skew(0, 45))
The matrix passed as the third argument will be used to multiply.
returns
: SVG.Matrix
native()
Returns a native SVGMatrix
extracted from the SVG.Matrix
instance:
matrix.native()
returns
: SVGMatrix
toString()
Converts the matrix to a transform string:
matrix.toString()
returns
: string
Extending functionality
SVG.invent()
Creating your own custom elements with SVG.js is a piece of cake thanks to the SVG.invent
function. For the sake of this example, lets "invent" a shape. We want a rect
with rounded corners that are always proportional to the height of the element. The new shape lives in the SVG
namespace and is called Rounded
. Here is how we achieve that.
SVG.Rounded = SVG.invent({
create: 'rect'
, inherit: SVG.Shape
, extend: {
size: function(width, height) {
return this.attr({
width: width
, height: height
, rx: height / 5
, ry: height / 5
})
}
}
, construct: {
rounded: function(width, height) {
return this.put(new SVG.Rounded).size(width, height)
}
}
})
To create the element in your drawing:
var rounded = draw.rounded(200, 100)
That's it, the invention is now ready to be used!
Accepted values
The SVG.invent()
function always expects an object. The object can have the following configuration values:
create
: can be either a string with the node name (e.g. rect
, ellipse
, ...) or a custom initializer function; [required]
inherit
: the desired SVG.js class to inherit from (e.g. SVG.Shape
, SVG.Element
, SVG.Container
, SVG.Rect
, ...); [optional but recommended]
extend
: an object with the methods that should be applied to the element's prototype; [optional]
construct
: an object with the methods to create the element on the parent element; [optional]
parent
: an SVG.js parent class on which the methods in the passed construct
object should be available; [optional]
Svg.js uses the SVG.invent()
function to create all internal elements, so have a look at the source to see how this function is used in various ways.
SVG.extend()
SVG.js has a modular structure. It is very easy to add you own methods at different levels. Let's say we want to add a method to all shape types then we would add our method to SVG.Shape:
SVG.extend(SVG.Shape, {
paintRed: function() {
return this.fill('red')
}
})
Now all shapes will have the paintRed method available. Say we want to have the paintRed method on an ellipse apply a slightly different color:
SVG.extend(SVG.Ellipse, {
paintRed: function() {
return this.fill('orangered')
}
})
The complete inheritance stack for SVG.Ellipse
is:
SVG.Ellipse
< SVG.Shape
< SVG.Element
The SVG document can be extended by using:
SVG.extend(SVG.Doc, {
paintAllPink: function() {
this.each(function() {
this.fill('pink')
})
}
})
You can also extend multiple elements at once:
SVG.extend(SVG.Ellipse, SVG.Path, SVG.Polygon, {
paintRed: function() {
return this.fill('orangered')
}
})
Plugins
Here are a few nice plugins that are available for SVG.js:
** Caution: Not tested for SVG.js 2.0 **
absorb
svg.absorb.js absorb raw SVG data into an SVG.js instance.
draggable
svg.draggable.js to make elements draggable.
connectable
svg.connectable.js to connect elements.
svg.connectable.js fork to connect elements (added: curved connectors, you can use any self-made path as a connector, choosable 'center'/'perifery' attachment, 'perifery' attachment for source / target SVG Paths uses smallest-distance algorithm between PathArray points)
easing
svg.easing.js for more easing methods on animations.
export
svg.export.js export raw SVG.
filter
svg.filter.js adding svg filters to elements.
foreignobject
svg.foreignobject.js foreignObject implementation (by john-memloom).
import
svg.import.js import raw SVG data.
math
svg.math.js a math extension (by Nils Lagerkvist).
path
svg.path.js for manually drawing paths (by Nils Lagerkvist).
shapes
svg.shapes.js for more polygon based shapes.
topath
svg.topath.js to convert any other shape to a path.
topoly
svg.topoly.js to convert a path to polygon or polyline.
wiml
svg.wiml.js a templating language for svg output.
comic
comic.js to cartoonize any given svg.
draw
svg.draw.js to draw elements with your mouse
select
svg.select.js to select elements
resize
svg.resize.js to resize elements with your mouse
Contributing
We love contributions. Yes indeed, we used the word LOVE! But please make sure you follow the same coding style. Here are some guidelines.
Indentation
We do it with two spaces. Make sure you don't start using tabs because then things get messy.
Avoid hairy code
We like to keep things simple and clean, don't write anything you don't need. So use single quotes where possible and avoid semicolons, we're not writing PHP here.
Good:
var text = draw.text('with single quotes here')
, nest = draw.nested().attr('x', '50%')
for (var i = 0; i < 5; i++)
if (i != 3)
nest.circle(i * 100)
Bad:
var text = draw.text("with single quotes here");
var nest = draw.nested().attr("x", "50%");
for (var i = 0; i < 5; i++) {
if (i != 3) {
nest.circle(100);
};
};
Minimize variable declarations
All local variables should be declared at the beginning of a function or method unless there is ony one variable to declare. Although it is not required to assign them at the same moment. When if statements are involved, requiring some variables only to be present in the statement, the necessary variables should be declared right after the if statement.
Good:
function reading_board() {
var aap, noot, mies
aap = 1
noot = 2
mies = aap + noot
}
Bad:
function reading_board() {
var aap = 1
var noot = 2
var mies = aap + noot
}
Let your code breathe people!
Don't try to be a code compressor yourself, they do way a better job anyway. Give your code some spaces and newlines.
Good:
var nest = draw.nested().attr({
x: 10
, y: 20
, width: 200
, height: 300
})
for (var i = 0; i < 5; i++)
nest.circle(100)
Bad:
var nest=draw.nested().attr({x:10,y:20,width:200,height:300});
for(var i=0;i<5;i++)nest.circle(100);
Where necessary tell us what you are doing but be concise. We only use single-line comments. Also keep your variable and method names short while maintaining readability.
Good:
SVG.extend(SVG.Rect, {
orangify: function() {
this.fill('orange')
return this.opacity(0.85)
}
})
Bad:
SVG.extend(SVG.Rect, {
orgf: function() {
return this.fill('orange').opacity(0.85)
}
})
Refactor your code
Once your implementation is ready, revisit and rework it. We like to keep it DRY.
Test. Your. Code.
It's not that hard to write at least one example per implementation, although we prefer more. Your code might seem to work by quickly testing it in your brwoser but more than often you can't forsee everything.
Before running the specs you will need to build the library. Be aware that pull requests without specs will be declined.
Building
After contributing you probably want to build the library to run some specs. Make sure you have Node.js installed on your system, cd
to the svg.js directory and run:
$ npm install
Build SVG.js by running gulp
:
$ gulp
The resulting files are:
dist/svg.js
dist/svg.min.js
Compatibility
Desktop
- Firefox 3+
- Chrome 4+
- Safari 3.2+
- Opera 9+
- IE9+
Mobile
- iOS Safari 3.2+
- Android Browser 3+
- Opera Mobile 10+
- Chrome for Android 18+
- Firefox for Android 15+
Visit the SVG.js test page if you want to check compatibility with different browsers.
Acknowledgements & Thanks
Documentation kindly provided by DocumentUp
SVG.js and its documentation is released under the terms of the MIT license.