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 2D Transforms

Not sure how to have 2 different acceleration curves on 2 transform functions of the same element.

.mike { display: block; width: 100%; transition: 1s ease-out, cubic-bezier(.5, -.4, .3, 1.3); }

.wrap:hover .mike { -webkit-transform: rotate(2turn) scale(1.5); }

I want the element to rotate at the speed of ease out, but I want it to scale at the speed of a cubic-bezier(.5, -.4, .3, 1.3).