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 trialSean 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;