Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <h2>SVG arc path</h2>
  2. <h3>Drag the green and blue dots</h3>
  3.  
  4. <div id="controls">
  5. <label>
  6. <input type="radio" name="arc-mode" id="draw-circle" checked >
  7. Circle
  8. </label>
  9. <label>
  10. <input type="radio" name="arc-mode" disabled >
  11. Ellipse //TODO
  12. </label>
  13. </div>
  14. <svg width="500" height="500" >
  15. <!-- circle class="center" r="5" /-->
  16. <path id="arc" />
  17. <path id="arc-alternate" />
  18. <line class="tangent" />
  19. <line class="tangent" />
  20. <circle id="start" class="dot" r="10" cx="200" cy="150" />
  21. <circle id="help" class="dot" r="10" cx="450" cy="300" />
  22. <circle id="end" class="dot" r="10" cx="250" cy="400" />
  23. </svg>
  24.  
  25. <code></code>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement