Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.
Sean McGrath
18,541 PointsCSS 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

Dean jenkins
5,230 Points-webkit-animation-timing-function: ;

Dean jenkins
5,230 PointsHi Sean can you show us your code please
Sean McGrath
18,541 PointsHere you go.
transition-duration: 2s; transition-delay: 1s; transition-timing-function: linear;
using chrome... duration and delay are operating as expected.

Dean jenkins
5,230 Points-webkit-transition-delay: 1s; -webkit-animation-duration: 2s; -webkit-animation-timing-function: linear;
Sean McGrath
18,541 Pointssorry Dean. These did not work.
Joseph Groark
24,499 Pointsspecify 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;