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

Shaun Kelly
35,560 Pointstransition ease in and out
Hi guys here is my code for a website i am working on:
HTML
<body>
<img id="centre-piece" src="img/sk.png" width="350" height="320"
onmouseover="this.src='img/2.png'"
onmouseout="this.src='img/sk.png'">
</body>
How do i make the image ease in and ease back out during the transition. I wanted like a pixelated effect. Adding to this i want an arrow to come from the side of the image and point towards a particular place on the page.
1 Answer

Calvin Nix
43,828 PointsThe CSS code to do that looks like this:
Selector { transition-timing-function: ease-in-out; }
Shaun Kelly
35,560 PointsShaun Kelly
35,560 PointsI have tried with the answer you gave but no success! i have updated my discussion with the code.