This is my markup structure:
<div class="authentication">
<div class="form-inputs"></div>
</div>
I wanted that on page load the color of authentication slides down from top-bottom. The color is initially white and blue should slide down from the top. (like the header color fills the body).
I tried this :
<script>
jQuery(document).ready(function($) {
$('.authentication').animate({backgroundColor: '#4BC5DA'}, 3000);
});
</script>
But it has a fade in effect :(
After the color change i need the "form-inputs" should fade in ... i know i need to chain the actions but im not exactly getting it.