jQuery Colour fade in and out

Jemz

xmas tings.
Aug 6, 2013
166
17
Can someone give me the jQuery for this.
I tried using CSS3 but it wouldn't fade both the text colour and background colour.
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
Not sure if this is what you want.

Code:
$(document).ready(function() {
    $('.nav_text').fadeIn(1500).delay(3500).fadeOut(1500);
 
});

Adjust the times to what you want.
 

Users who are viewing this thread

Top