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 Transitions and Transforms Transitions - WebKit Only

Sean McGrath
Sean McGrath
18,541 Points

CSS transitions part 2 code challenge

Having trouble with this code challenge. the transition duration is correct and the delay is working but my timing functions is not working.

5 Answers

-webkit-animation-timing-function: ;

Hi Sean can you show us your code please

Sean McGrath
Sean McGrath
18,541 Points

Here you go.

transition-duration: 2s; transition-delay: 1s; transition-timing-function: linear;

using chrome... duration and delay are operating as expected.

-webkit-transition-delay: 1s; -webkit-animation-duration: 2s; -webkit-animation-timing-function: linear;

Sean McGrath
Sean McGrath
18,541 Points

sorry Dean. These did not work.

Joseph Groark
Joseph Groark
24,499 Points

specify the first transition, the challenge asks for a transition for the the border radius. Also use the prefix for webkit based browsers:

-webkit-transition: border-radius 2s 1s linear;