vote up 1 vote down star

Does anyone know of a lightweight (small file size) HTML background color fader?

Something like the below pseudo-JavaScript

fadeDiv('div_element_to_fade','hex_start_color','hex_end_color','speed_of_fade');
flag

0% accept rate

3 Answers

vote up 1 vote down

Maybe my answer is a bit OFF, but, If I were you, I'd definitely go with the JQuery way

link|flag
1  
JQuery is not lightweight unfornuately :( – AndyT Nov 7 at 20:29
vote up 0 vote down

You could use this solution.

This uses jquery. I highly recommend that you start using this instead of plain javascript

Another solution:

$("#go").click(function(){
  $(".block").animate( { backgroundColor: 'pink' }, 1000)
    .animate( { backgroundColor: 'blue' }, 1000);
});

To call it how you want:

function animateColorsCustom(){
  $(".block").animate( { backgroundColor: 'pink' }, 1000)
    .animate( { backgroundColor: 'blue' }, 1000);
}

function otherFunction(){
  animateColorsCustom();
}
link|flag
I'm fine with using JQuery but, I need to make it a callable function (not using a hover). How do I make this a callable function and not an animate on a hover action? – AndyT Nov 7 at 19:15
I'm also not clear on how the color fade work. Let's assume I have a white background. What I want to have happen is the background color of my div immediate turns yellow, then fades back to the original background color of white. How would I do this as well? (Thanks in advance) – AndyT Nov 7 at 19:16
instead of calling the function on hover, call it on whatever trigger you want – marcgg Nov 7 at 19:16
take a look at the new example I posted. I don't get your issue with how to call the function. Once the function is defined, you can call it how you want – marcgg Nov 7 at 19:16
Looks like you changed your code. You new code now assumes I going to use a "click" to initiate the action to fade the background color. I simply want to programmatically call a function to make the DIV background color to fade. Make sense? – AndyT Nov 7 at 19:18
show 17 more comments
vote up 0 vote down

Try this Background Fade or this Background Fader or this Fade The Background Color

link|flag

Your Answer

Get an OpenID
or

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