I'm working on a gradient stroke for a "loading circle" using createJS. However, I only need the gradient effect to be applied on one "joining point" of the two colors, and not apply it on the other joining point.
What I did was this, but it's only giving me a normal gradient effect:
var rd = 64;
timerCount.graphics.setStrokeStyle(8)
/* yellow ,red*/
.beginLinearGradientStroke( ["#F7CC00","#FE1D1E"] ,[0,1] ,0,rd*0.5 ,0,-rd );
Please refer to the image below:
Anyone knows how I can do this?
Here's my code in JSFiddle: https://jsfiddle.net/flamedenise/gg9aabug/18/
Thank you and Happy New Year ahead!
I have managed to create a workaround to achieve this! Since
beginLinearGradientStroke()
only creates a "normal" gradient, I figured out overlaying it with another gradient (with transparent as the second color) would work.What I did was create the first circle with two colors that appear as "solid" (by setting the ratios and x and y positions accordingly) and then overlaid it with another gradient circle - with one color the combination of the first two colors, and the other one transparent.
Here's the JSFiddle showing the final outcome: https://jsfiddle.net/flamedenise/n9no9Lgw/