Guest User

Untitled

a guest
Jan 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <script>
  2. var circle = new Konva.Circle({
  3. x : xx,
  4. y : yy,
  5. radius : radius,
  6. fill : "#F49342",
  7. stroke : "#ED6347",
  8. draggable : "true"
  9.  
  10. });
  11. var line = new Konva.Line({
  12. points: [23,23,35,35],
  13. stroke: 'black',
  14. strokeWidth: 2,
  15. lineCap: 'round',
  16. lineJoin: 'round'
  17. });
  18. </script>
Add Comment
Please, Sign In to add comment