]> source.dussan.org Git - svg.js.git/commitdiff
Updated readme
authorwout <wout@impinc.co.uk>
Mon, 17 Dec 2012 20:59:07 +0000 (21:59 +0100)
committerwout <wout@impinc.co.uk>
Mon, 17 Dec 2012 20:59:07 +0000 (21:59 +0100)
README.md

index 2a6d2049535496aac689430d043e548e4bebf80f..bf65f015c2ea306dc63d7e246c43750ff4079a7e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -69,6 +69,25 @@ 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()' function is much more convenient.
 
 
+#### Fill
+The 'fill()' function is a pretty alternative to the 'attr()' method:
+```javascript
+rect.fill({ color: '#f06', opacity: 0.6 });
+```
+
+#### Stroke
+The 'stroke()' function is similar to 'fill()':
+```javascript
+rect.stroke({ color: '#f06', opacity: 0.6, width: 5 });
+```
+
+#### Removing elements
+Pretty straightforward:
+```javascript
+rect.remove();
+```
+
+
 ### Path element
 
 ```javascript