I need help with Animated Avatar a challenge in Computer Programming.
I don't know how to do this specific challenge called Animated Avatar located in "Making webpages interactive jQuery". Please help me!
Hi Kaitlyn,
For the first step you need to animate the avatar image so that it has a larger width. Your code should look something like this:
$("...").animate({...});
The first blank is the CSS selector that selects the avatar. Think about how you would select the image to add any other regular CSS styling.
The second blank is where you specify which property to animate. In this case we are animating the width, so you should specify the new width property here. You're basically writing CSS property-value pairs within the curly braces inside the animate() function call.
I hope this helps! Let me know if you have any follow-up questions : )
It still not helping me this is frustrating to me. Can you make this easier for me. its hard...
How to animate the text after animating the image? I can't check whether an image has stopped animating, there's no such boolean.
Please sign in to leave a comment.