]> source.dussan.org Git - svg.js.git/commitdiff
Added arrange functionality to readme
authorwout <wout@impinc.co.uk>
Tue, 18 Dec 2012 20:15:37 +0000 (21:15 +0100)
committerwout <wout@impinc.co.uk>
Tue, 18 Dec 2012 20:15:37 +0000 (21:15 +0100)
README.md

index 141749d5a6b5f33d85fce179e95ebaf64267ac72..f55f3c19260e8b9e2a5ff2f18dd00620f09d0726 100644 (file)
--- a/README.md
+++ b/README.md
@@ -32,10 +32,13 @@ This will generate the following output:
 
 ### Manipulating elements
 
-#### Setting attributes
-You can set an element's attributes directly with 'attr()':
+#### Attributes
+You can get set an element's attributes directly using 'attr()':
 
 ```javascript
+// get a single attribute
+rect.attr('x');
+
 // set a single attribute
 rect.attr('x', 50);
 
@@ -129,6 +132,30 @@ clipRect = clipPath.rect({ x:10, y:10, width:80, height:80 });
 rect.clipTo(clipPath);
 ```
 
+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:
+
+```javascript
+// move element to the front
+rect.front();
+
+// move element to the back
+rect.back();
+
+// move element one step forward
+rect.forward();
+
+// move element one step backward
+rect.backward();
+// 
+```
+
+This functionality requires the arrange.js module which is included in the default distribution.
+
+
 ## Compatibility
 
 ### Desktop