anup-a / svgwave

SVG Wave is a tiny, free and beautiful SVG gradient waves generator for your next design.

Home Page:https://www.svgwave.in

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React: Add angle option in gradient color picker for waves.

anup-a opened this issue · comments

Right now the linear gradient has only 0 deg transform (which is default).

  • Add input in the color picker modal to take angle as user input.
  • Transform gradient according to the angle.
  • gradientTransform should be the key to solve this

Ex-

    <linearGradient id="myGradient" gradientTransform="rotate(90)">
      <stop offset="5%"  stop-color="gold" />
      <stop offset="95%" stop-color="red" />
    </linearGradient>

I could try to add this functionality 👍

@TaneliR Yeah sure thanks. Assigning this to you. Feel free to ask questions if something isn't clear to you.