diff --git a/demos/tutorial/3.html b/demos/tutorial/3.html new file mode 100644 index 0000000..ebae735 --- /dev/null +++ b/demos/tutorial/3.html @@ -0,0 +1,202 @@ + + + + + Tutorial + + + + + + + + +
    +
  1. // Simple dashed pattern on circle with mask +// Lets connect mask and circle together. Also useful if we have a path +// and can’t calculate offset easily. +var s = Snap("#svg"); +// So, lets start with an empty circle. +// It’s important that it will not have any attributes set +var bigCircle = s.circle(150, 150, 100);
  2. +
  3. //----------------------------------------------------- +// Lets use it again for patterned fill +var c1 = bigCircle.use(); +// Create pattern +var p = s.path("M110,95,95,110M115,100,100,115").attr({ + fill: "none", + stroke: "#bada55", + strokeWidth: 4 + }); +var ptrn = p.pattern(100, 100, 10, 10); +// and apply some nice attributes +c1.attr({ + fill: ptrn +});
  4. +
  5. //----------------------------------------------------- +// Lets use it for stroke +var c2 = bigCircle.use(); +c2.attr({ + fill: "none", + stroke: "#000", + strokeWidth: 6 +});
  6. +
  7. // Lets create a masking circle
  8. +
  9. var ring = bigCircle.use(); +ring.attr({ + fill: "none", + stroke: "#000", + strokeWidth: 20 // we need only inner 10px of it +});
  10. +
  11. // Hide bigCircle by moving it to <defs> +bigCircle.toDefs();
  12. +
  13. var mask = s.mask();
  14. +
  15. // Background rect: +mask.add(s.rect(0, 0, "100%", "100%").attr({fill: "#fff"}));
  16. +
  17. // and our ring +mask.add(ring);
  18. +
  19. c1.attr({ + mask: mask +});
  20. +
  21. //Now, let’s animate bigCircle:
  22. +
  23. bigCircle.animate({r: 50}, 5e3, mina.elastic); +// Despite bigCircle is not visible it affect all 3 “uses” of it.
  24. + +
+ +
+ + + + + + + \ No newline at end of file diff --git a/demos/tutorial/4.html b/demos/tutorial/4.html new file mode 100644 index 0000000..fababe3 --- /dev/null +++ b/demos/tutorial/4.html @@ -0,0 +1,180 @@ + + + + + Tutorial + + + + + + + + +
    +
  1. // Text on the path +var s = Snap("#svg");
  2. +
  3. // Setting the background +var bg = s.rect(50, 50, 200, 200, 10).attr({fill: "#ccc"});
  4. +
  5. var t = s.text(150, 150, "Test Text").attr({ + font: "30px Helvetica, sans-serif", + textAnchor: "middle", + fill: "#ddd" +});
  6. +
  7. // Lets create a mask
  8. +
  9. var t2 = t.use().attr({ + stroke: "#000", + strokeWidth: 10, + strokeLinecap: "round", + strokeLinejoin: "round" +}); +
  10. +
  11. var mask = s.mask();
  12. +
  13. // Background rect: +mask.add(s.rect(0, 0, "100%", "100%").attr({fill: "#fff"}));
  14. +
  15. // and our ring +mask.add(t2);
  16. +
  17. bg.attr({ + mask: mask +});
  18. +
  19. //Now, let’s animate:
  20. +
  21. t2.animate({strokeWidth: 4}, 5e3, mina.bounce);
  22. + +
+ +
+ + + + + + + \ No newline at end of file