]> source.dussan.org Git - svg.js.git/commitdiff
Added more info on gradients
authorwout <wout@impinc.co.uk>
Sat, 22 Dec 2012 14:59:41 +0000 (15:59 +0100)
committerwout <wout@impinc.co.uk>
Sat, 22 Dec 2012 14:59:41 +0000 (15:59 +0100)
README.md

index 66668e5c3029340fe999412264c0cea3edebbb97..19c759277254226882cc1fdcca821ce0c6efb966 100644 (file)
--- a/README.md
+++ b/README.md
@@ -214,7 +214,7 @@ rect.clip(function(clipPath) {
 
 You can also reuse clip paths for multiple elements using 'clipTo()'.
 ```javascript
-var clipPath = doc.defs().clipPath();
+var clipPath = doc.defs().clip();
 clipRect = clipPath.rect(80, 80).move(10, 10);
 rect.clipTo(clipPath);
 ```
@@ -302,6 +302,10 @@ draw.gradient('radial', function(stop) {
 s1.update({ offset: 10, color: '#0f0', opacity: 1 });
 ```
 
+[W3Schools](http://www.w3schools.com/svg/svg_grad_linear.asp) has a great example page on how
+[linear gradients](http://www.w3schools.com/svg/svg_grad_linear.asp) and
+[radial gradients](http://www.w3schools.com/svg/svg_grad_radial.asp) work.
+
 _This functionality requires the gradient.js module which is included in the default distribution._