Jump to content
Search Community

lena

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by lena

  1. I'm trying to create a bezier curve that I can animate an icon over. I first tried creating the animated icon with the curve x, y coordinates like so: TweenMax.to(icon, 3, {bezier:{type:'soft', curviness:1.25, values: [{x:350, y:95}, {x:200, y:495}, {x:610, y:580}], autoRotate:true}, ease:Power1.easeInOut}); Now I am trying to create the bezier line itself by using the HTML drawing canvas api, using the exact coordinates and I'm not getting the same curve?? Is there a reason?? context.bezierCurveTo(350,95,200,495,610,580);
×
×
  • Create New...