Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been experimenting with HTML5 and gradient fades, I would like to use 3 colours and gradually fade them into each other. Currently I can only get it working using two colours.

jsFiddle

My target is something similar to this image:

target image

The colours should slowly fade into each other, i'm happy with the fade effect I currently have working, although would like to add a third colour.

I have tried to add an array of the colours to use, but the colour function was modded from a tutorial (will add link if I can find) and am not quite sure how to do it.

Could anyone offer any adivce?

Thanks in advance.

Am not trying to get it looking exactly the same as the image, but if I could just add another colour to my current version that should be fine.

Edit: Due to the confusion: I'm not looking for a "static" graident, if you view my example closely you will see a suttle fade effect. I want to achieve the same effect, but have the gradient with 3 colours and looking similar to the image above.

It should "shimmer" and a gradually fade. Offering a bounty as I'm struggling with creating this with 3 colours, which I think will be easy for most..

share|improve this question
1  
This might help. – Pointy Oct 5 '11 at 11:42
Wait ... you're doing this in a <canvas> and not with the HTML5/CSS3 "linear-gradient" background style ... is that what you prefer? – Pointy Oct 5 '11 at 11:44
I want it to work in as many browsers as possible, and with using ex-canvas I was hoping to add support for IE. Is it possible to do a similar effect in HTML5/CSS3 with fading? – Elliott Oct 5 '11 at 11:46
Well check that gradient generator site - it's got some provisions for IE, and it gives you what appears to be pretty portable CSS. (edit actually for older IE browsers it looks like it can't really do it, with only the old transform "filter" properties.) – Pointy Oct 5 '11 at 11:47
your code suxx. Gradients are very simple thing to do with canvas. As you can see they work jsfiddle.net/6td2m – c69 Oct 5 '11 at 11:57
show 3 more comments

2 Answers

up vote 8 down vote accepted
+350

Unless you need to do some complex animation, you were doing some extremely unnecessary calculations for your gradient. The point of the gradient is that you give it some seed values and it generates everything in between automatically.

I worked up a sample gradient that looks similar to your reference image: http://jsfiddle.net/ZFayC/2/

Note that it looks like your reference image might have a small amount of texture to it, and that the gradient definitely isn't linear. If you want to re-create the reference image, you'll have to use some radial gradients and possibly overlay a texture.

Also, note that you were setting the canvas width and height via CSS properties. With the canvas element, CSS width and height control the magnification of the element, while DOM-level attributes control the actual dimensions.


Edit: I completely missed the fact that you were looking to produce an animated gradient. My apologies for that.

I went back and edited my example to smoothly transition between three pre-defined colors similar to the ones in your reference image. You can view the updated example here:

http://jsfiddle.net/fkU4Q/

Is this more along the lines of what you're looking for?


Edit: Here's another update that adds full-screen support, a diagonal gradient, and a secondary radial gradient that is overlaid in the middle to help give some variety:

http://jsfiddle.net/fkU4Q/2/

You might want to customize the colors a bit more to increase the variation, but hopefully the functionality is there now.

share|improve this answer
Hi, thanks for that it looks good. Although my main problem was getting the colours to fade into each other, like my demo? Thanks. – Elliott Oct 5 '11 at 22:32
@Elliott I don't quite follow what you're looking for. The colors in my example fade into one another. Am I missing something? – Xenethyl Oct 5 '11 at 23:43
The fade is static, if you look at my example you will see the colours fade in and out of each other. Thats why I have all the extra code. Thanks. – Elliott Oct 6 '11 at 8:14
@Elliott Ah, my apologies. I somehow completely missed the subtle color fluctuations in your example. I feel like you should be able to achieve what you're looking for by dynamically updating only the color values and keeping the stop locations the same. That would keep your code much cleaner and a lot more straight-forward. For example, color1 shifts to color2, color2 shifts to color3, and color3 shifts to color1 (and so on, around in a loop). – Xenethyl Oct 6 '11 at 9:14
I have tried doing that and it seems to "jump" and isn't as smooth as it currently is - Now offering a bounty. – Elliott Oct 10 '11 at 20:55
show 8 more comments

I think by applying certain tricks it should not be a big deal using CSS3 properties here is the playground,

http://css3.mikeplate.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.