Animations
-
I’ve been trying to create animations but…
Part 1 (line 94 //Start Fade Out)
$content.find('.title') .animate({right: '20%', opacity: 0},800); $content.find('.img') .animate({left: '-150%'},1000);As you can see I’ve some animations now I need to get the new content back.
Part 2 (line 128 //Update the content)
$content.stop(true,true); $('.title').animate({right: '3%', opacity: 1},1200); $('.shootImg').animate({left: 0},1000, function(){ $content.html(contentHtml).ajaxify(); });The animation does exactly what I want but it does not return the new content. I know, the code is not right, that’s why I ask for some help.
Could you tell me how can I get the new content before the animation shows the new content?
Hope this helps someone.
Thank you!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
The topic ‘Animations’ is closed to new replies.