simultaneous animating and fade in
Here is my current jQuery document:
$(document).ready(function() {
$('#name').fadeOut(0);
$('#enter').fadeOut(0);
$('#name').fadeIn(1500);
$('#enter').delay(1500).fadeIn(2500).animate({"margin-left": "340"}, (2000));
});
the problem is that in this line:
$('#enter').delay(1500).fadeIn(2500).animate({"margin-left": "340"}, (2000));
it fades in and then moves (one after the other).
Is there a way to make it fade in and move simultaneously?
Also when fading in, the png images flip out in IE - I knew this was a problem before I started but I chose to ignore it and continue on hoping that I would find an answer online. Has anyone found a solution to this problem? If you wanna look at the current file then check out;
Thanks guys!