svg.js的使用

来源:互联网 发布:new surface pro 知乎 编辑:程序博客网 时间:2024/03/29 09:12

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.

Wout on Gittip

Usage

Create a SVG document

Use the SVG() function to create a SVG document within a given html element:

var draw = SVG('canvas').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="canvas">    <svg xmlns="http://www.w3.org/2000/svg" version="1.1" 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 canvas follows the dimensions of its parent, in this case #canvas:

var draw = SVG('canvas').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('canvas')  var rect = draw.rect(100, 100)} else {  alert('SVG not supported')}

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 canvas, the zoom value will be 1.

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)

This functionality requires the nested.js module which is included in the default distribution.

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="viewport" 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('viewport')      draw.rect(100,100).animate().fill('#f03').move(100,100)    ]]>  </script></svg>

Elements

Rect

Rects have two arguments, their width and height:

var rect = draw.rect(100, 100)

Ellipse

Ellipses, like rects, have two arguments, their width and height:

var ellipse = draw.ellipse(200, 100)

Circle

The only argument necessary for a circle is the diameter:

var circle = draw.circle(100)

Note that this generates an <ellipse> element instead of a <circle>. This choice has been made to keep the size of the library down.

Line

The line element always takes four arguments, x1y1x2 and y2:

var line = draw.line(0, 0, 100, 150).stroke({ width: 1 })

Polyline

The polyline element defines a set of connected straight line segments. Typically, polyline elements define open shapes:

// polyline('x,y x,y x,y')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:

// polyline([[x,y], [x,y], [x,y]])var polyline = draw.polyline([[0,0], [100,50], [50,100]]).fill('none').stroke({ width: 1 })

Polygon

The polygon element, unlike the polyline element, defines a closed shape consisting of a set of connected straight line segments:

// polygon('x,y x,y x,y')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.

Path

The path string is similar to the polygon string but much more complex in order to support curves:

// path('path data')var path = draw.path('M10,20L30,40')

For more details on path data strings, please refer to the SVG documentation:http://www.w3.org/TR/SVG/paths.html#PathData

Note that paths will always be positioned at x=0, y=0 on creation. This is to make the unified move() api possible. Svg.js assumes you are creating a path to move it afterwards. If you need to constantly update your path you probably don't want to use the move() method at all. In that case you can create an "unbiased" path like so:

// path('path data', unbiased)var path = draw.path('M10,20L30,40', true)

This logic is also applicable to polylines and polygons.

Image

When creating images the width and height values should be defined:

// image(src, width, height)var image = draw.image('/path/to/image.jpg', 200, 200).move(100, 100)

Text

The first argument of a text element is the actual text content:

var text = draw.text("svg\nto\nthe\npoint.").move(300, 0)

Changing text afterwards is also possible with the text() method:

text.text('Brilliant!')

To get the raw text content:

text.content

The sugar.js module provides some syntax sugar specifically for this element type:

text.font({  family:   'Helvetica', size:     144, anchor:   'middle', leading:  1.5})

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 canvas, 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.

Referencing elements

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')

Manipulating elements

Attributes

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)

Transform

With the transform() method elements can be scaled, rotated, translated and skewed:

rect.transform({  rotation: 45, cx:       100, cy:       100})

You can also provide two arguments as property and value:

rect.transform('matrix', '1,0.5,0.5,1,0,0')

All available transformations are:

rect.transform({  x:        [translation on x-axis], y:        [translation on y-axis], rotation: [degrees], cx:       [x rotation point], cy:       [y rotation point], scaleX:   [scaling on x-axis], scaleY:   [scaling on y-axis], skewX:    [skewing on x-axis], skewY:    [skewing on y-axis], matrix:   [a 6-digit matrix string; e.g. '1,0,0,1,0,0'], a:        [the first matrix digit], b:        [the second matrix digit], c:        [the third matrix digit], d:        [the fourth matrix digit], e:        [the fifth matrix digit], f:        [the sixth matrix digit]})

Note that you can also apply transformations directly using the attr() method:

rect.attr('transform', 'matrix(1,0.5,0.5,1,0,0)')

Although that would mean you can't use the transform() method because it would overwrite any manually applied transformations. You should only go down this route if you know exactly what you are doing and you want to achieve an effect that is not achievable with the transform() method.

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;')

Similarly to attr() the style() method can also act as a getter:

rect.style('cursor')// => pointer

Or even a full getter:

rect.style()// => 'cursor:pointer;fill:#f03;'

Explicitly deleting individual style definitions works the same as with the attr() method:

rect.style('cursor', null)

Move

Move the element to a given x and y position by its upper left corner:

rect.move(200, 350)

This will have the same effect as:

rect.x(200).y(350)

Note that you can also use the following code to move elements 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 cxand cy attributes and thereby simply ignoring the x and y values you might assign.

The text element has one optional argument:

// move(x, y, anchor)rect.move(200, 350, true)

The third argument can be used to move the text element by its anchor point rather than the calculated left top position. This can also be used on the individual axes:

rect.x(200, true).y(350, true)

Center

This is an extra method to move an element by its center:

rect.center(150, 150)

This will have the same effect as:

rect.cx(150).cy(150)

The text element has one optional argument:

// center(x, y, anchor)rect.center(150, 150, true)

The third argument can be used to center the text element by its anchor point rather than the calculated center position. This can also be used on the individual axes:

rect.cx(150, true).cy(150, true)

Size

Set the size of an element by a given width and height:

rect.size(200, 300)

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.

Hide and show

We all love to have a little hide:

rect.hide()

and show:

rect.show()

To check if the element is visible:

rect.visible()

Removing elements

Pretty straightforward:

rect.remove()

To remove all elements in the svg document:

draw.clear()

Bounding box

path.bbox()

This will return an instance of SVG.BBox containing the following values:

{ height: 20, width: 20, y: 20, x: 10, cx: 30, cy: 20 } 

As opposed to the native getBBox() method any translations used with the transform() method will be taken into account.

The SVG.BBox has one other nifty little feature, enter the merge() method. With merge() two SVG.BBoxinstances 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)

Rectagular box

Is similar to bbox() but will give you the box around the exact representation of the element, taking all transformations into account.

path.rbox()

This will return an instance of SVG.RBox.

Iterating over all children

If you would iterate over all the children of the svg document, you might notice also the <defs> and <g>elements will be included. To iterate the shapes only, you can use the each() method:

draw.each(function(i, children) {  this.fill({ color: '#f06' })})

Deep traversing is also possible by passing true as the second argument:

// draw.each(block, deep)draw.each(function(i, children) {  this.fill({ color: '#f06' })}, true)

Colors

Svg.js has a dedicated color module handling different types of colors. Accepted values are:

  • hex string; three based (e.g. #f06) or six based (e.g. #ff0066)
  • rgb string; e.g. rgb(255, 0, 102)
  • rgb object; e.g. { r: 255, g: 0, b: 102 }

Note that when working with objects is important to provide all three values every time.

Animating elements

Invoking an animation

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 milliseconds, the second ease and the thirddelay:

rect.animate(2000, '>', 1000).attr({ fill: '#f03' })

Alternatively you can pass an object as the first argument:

rect.animate({ ease: '<', delay: 1500 }).attr({ fill: '#f03' })

By default milliseconds will be set to 1000ease will be set to <>.

Easing

All available ease types are:

  • <>: ease in and out
  • >: ease out
  • <: ease in
  • -: linear
  • 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.

Animatable methods

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() andopacity() will be available as well:

rect.animate().rotate(45).skew(25, 0)

You can also animate non-numeric unit values unsing the attr() method:

rect.animate().attr('x', '10%').animate().attr('x', '50%')

Stopping animations

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)

Synchronising animations

If you want to perform your own actions during the animations you can use the during() method:

var position  , from = 100  , to   = 300rect.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 fromand 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) {  /* numeric values */  ellipse.size(morph(100, 200), morph(100, 50))  /* unit strings */  ellipse.attr('cx', morph('20%', '80%'))  /* hex color strings */  ellipse.fill(morph('#333', '#ff0066'))})

Controlling animations externally

Say you want to control the position of an animation with an external event, then the to() method will proove very useful:

var animate = draw.rect(100, 100).move(50, 50).animate('=').move(200, 200)document.onmousemove = function(event) {  animate.to(event.clientX / 1000)}

In order to be able use the to() method the duration of the animation should be set to '='. The value passed as the first argument of to() should be a number between 0 and 10 being the beginning of the animation and 1 being the end. Note that any values below 0 and above 1 will be normalized.

After animation callback

Finally, you can add callback methods using after():

rect.animate(3000).move(100, 100).after(function() {  this.animate().attr({ fill: '#f06' })})

This functionality requires the fx.js module which is included in the default distribution.

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')

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')

Opacity

To set the overall opacity of an element:

rect.opacity(0.5)

Rotate

The rotate() method will automatically rotate elements according to the center of the element:

// rotate(degrees)rect.rotate(45)

Although you can also define a specific rotation point:

// rotate(degrees, cx, cy)rect.rotate(45, 50, 50)

Skew

The skew() method will take an x and y value:

// skew(x, y)rect.skew(0, 45)

Scale

The scale() method will take an x and y value:

// scale(x, y)rect.scale(0.5, -1)

Translate

The translate() method will take an x and y value:

// translate(x, y)rect.translate(0.5, -1)

This functionality requires the sugar.js module which is included in the default distribution.

Masking elements

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)

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)

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')

Unmasking the elements can be done with the unmask() method:

rect.unmask()

Removing the mask alltogether will also unmask() all masked elements:

rect.masker.remove()

The unmask() method returns the masking element. So if you would like to remove the

This functionality requires the mask.js module which is included in the default distribution.

Clipping elements

Clipping elements is exactly the same as masking elements:

var ellipse = draw.ellipse(80, 40).move(10, 10).fill({ color: '#fff' })rect.clipWith(ellipse)

Similar to masking, the clipping element can be referenced in the clipped element:

rect.clipper.move(20,30)

Unclipping the elements can be done with the unclip() method:

rect.unclip()

Removing the clipPath alltogether will also unclip() all clipped elements:

rect.clipper.remove()

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.

Move element to the front:

rect.front()

Move element to the back:

rect.back()

Note that back() will move the element to position 1, not 0, because the <defs> node is already located at position 0.

Move element one step forward:

rect.forward()

Move element one step backward:

rect.backward()

The arrange.js module brings some additional methods. To get all siblings of rect, including rect itself:

rect.siblings()

Get the position (a number) of rect between its siblings:

rect.position()

Get the next sibling:

rect.next()

Get the previous sibling:

rect.previous()

Insert an element before another:

// inserts circle before rectrect.before(circle)

Insert an element after another:

// inserts circle after rectrect.after(circle)

This functionality requires the arrange.js module which is included in the default distribution.

Grouping elements

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)

This functionality requires the group.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:

// create some elementsvar rect = draw.rect(100,100)var circle = draw.circle(100).move(100,100).fill('#f09')// create a set and add the elementsvar set = draw.set()set.add(rect).add(circle)// change the fill of all elements in the set at onceset.fill('#ff0')

Quite a useful caracteristic of sets is the ability to accept multiple elements at once:

set.add(rect, circle)

Sets work with animations as well:

set.animate(3000).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.

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)})

To remove an element from a set:

set.remove(rect)

Or to remove all elements from a set:

set.clear()

Gradients

There are linear and radial gradients. The linear gradient can be created like this:

var gradient = draw.gradient('linear', function(stop) {  stop.at({ offset: 0, color: '#333', opacity: 1 })  stop.at({ offset: 1, color: '#fff', opacity: 1 })})

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%). To define the direction you can set from xy and to xy:

gradient.from(0, 0).to(0, 1)

The from and to values are also expressed in percent. Finally, to use the gradient on an element:

rect.attr({ fill: gradient })

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({ offset: 0, color: '#333', opacity: 1 })  stop.at({ offset: 1, color: '#fff', opacity: 1 })})gradient.from(0.5, 0.5).to(0.5, 0.5).radius(0.5)

A gradient can also be updated afterwards:

gradient.update(function(stop) {  stop.at({ offset: 0.1, color: '#333', opacity: 0.2 })  stop.at({ offset: 0.9, color: '#f03', opacity: 1 })})

And even a single stop can be updated:

var s1, s2, s3draw.gradient('radial', function(stop) {  s1 = stop.at({ offset: 0, color: '#000', opacity: 1 })  s2 = stop.at({ offset: 0.5, color: '#f03', opacity: 1 })  s3 = stop.at({ offset: 1, color: '#066', opacity: 1 })})s1.update({ offset: 0.1, color: '#0f0', opacity: 1 })

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 })   // -> first  stop.at({ offset: 0.5, color: '#f03', opacity: 1 }) // -> second  stop.at({ offset: 1, color: '#066', opacity: 1 })   // -> third})var s1 = gradient.get(0) // -> returns "first" stop

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.

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)

You can also bind event listeners to elements:

var click = function() {  rect.fill({ color: '#f06' })};rect.on('click', click)

Note that the context of event listeners is not the same as events, which are applied directly to the element. Therefore this will not refer to the element when using event listeners.

Unbinding events is just as easy:

rect.off('click', click)

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)

Data

The data() method allows you to bind arbitrary objects, strings and numbers to SVG elements:

rect.data('key', { value: { data: 0.3 }})

Fetching the values is similar to the attr() method:

rect.data('key')

Removing the data altogether:

rect.data('key', null)

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)

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')

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()

Extending functionality

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({ color: '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({ color: '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() {    for (var i = 0, l = this.children.length; i < l; i++) {      this.children[i].fill({ color: 'pink' })    }    return this  }})

You can also extend multiple elements at once:

SVG.extend(SVG.Ellipse, SVG.Path, SVG.Polygon, {  paintRed: function() {    return this.fill({ color: 'orangered' })  }})

Plugins

Here are a few nice plugins that are available for svg.js:

  • svg.draggable.js to make elements draggable.
  • svg.easing.js for more easing methods on animations.
  • svg.export.js export raw SVG.
  • svg.foreignobject.js foreignObject implementation (by john-memloom).
  • svg.import.js import raw SVG data.
  • svg.math.js a math extension (by Nils Lagerkvist).
  • svg.path.js for manually drawing paths (by Nils Lagerkvist).
  • svg.pattern.js add fill patterns.
  • svg.shapes.js for more polygon based shapes.
  • svg.textflow.js create auto-wrapping textflow elements.

Building

Starting out with the default distribution of svg.js is good. Although you might want to remove some modules to keep the size at minimum.

You will need ruby, RubyGems, and rake installed on your system.

# dependencies:$ ruby -v$ gem -v$ rake -V# required to generate the minified version:$ gem install uglifier

Build svg.js by running rake:

$ rakeOriginal version: 32.165kMinified: 14.757kMinified and gzipped: 4.413k, compression factor 7.289

The resulting files are:

  1. dist/svg.js
  2. dist/svg.min.js

To include optional modules and remove default ones, use the concat task. In this example, 'clip' is removed, but 'group' and 'arrange' are added:

$ rake concat[-clip:group:arrange] dist

To build the base library only including shapes:

rake concat[-fx:-event:-group:-arrange:-mask:-gradient:-nested:-sugar] dist

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.

Important: this library is still in beta, therefore the API might be subject to change in the course of development.

文章装载:https://github.com/wout/svg.js#circle

仅供个人学习使用,请不要作为商业用途。

原创粉丝点击