]> source.dussan.org Git - svg.js.git/commitdiff
Updated README
authorwout <wout@impinc.co.uk>
Sun, 6 Jan 2013 11:11:09 +0000 (12:11 +0100)
committerwout <wout@impinc.co.uk>
Sun, 6 Jan 2013 11:11:09 +0000 (12:11 +0100)
README.md

index 577b7d869bf2dbef563a7bff91db8e37c0f278d5..eac78f341962460db7eefeebe5e5da02698314de 100644 (file)
--- a/README.md
+++ b/README.md
@@ -337,6 +337,7 @@ rect.animate().center(200, 200);
 ```
 
 Finally, you can add callback methods using `after()`:
+
 ```javascript
 rect.animate(3000).move(100, 100).after(function() {
   this.animate().attr({ fill: '#f06' });
@@ -350,10 +351,17 @@ Fill and stroke are used quite often. Therefore two convenience methods are prov
 
 ### Fill
 The `fill()` method is a pretty alternative to the `attr()` method:
+
 ```javascript
 rect.fill({ color: '#f06', opacity: 0.6 });
 ```
 
+A single hex string will work as well:
+
+```javascript
+rect.fill('#f06');
+```
+
 ### Stroke
 The `stroke()` method is similar to `fill()`:
 
@@ -361,6 +369,12 @@ 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:
+
+```javascript
+rect.stroke('#f06');
+```
+
 ### Rotate
 The `rotate()` method will automatically rotate elements according to the center of the element: