Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Unused CSS Stages CSS Animations Full-Page Animation Project 2: WebKit Only

Sean Charoutanh
Sean Charoutanh
16,259 Points

Need help with animation challenge.

Problem: Using the prefix for WebKit-based browsers, bind the bg-move animation to the body selector. Give it an 8 second duration, then set it so that the final keyframe continues to apply after the animation sequence has completed.

My answer: -webkit-animation: bg-move 8s fowards;

Not sure why its not accepting this answer, please help.

1 Answer

Your on the right track but you have to use the forwards on the -webkit-animation-fill:forwards; this helps replay it from the last frame so just remove forwards and add this property

Sean Charoutanh
Sean Charoutanh
16,259 Points

Thanks Tunde, I put the property and value of -webkit-animation-fill-mode:forwards; and it worked.I appreciate it.