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

General Discussion

transition 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

The CSS code to do that looks like this:

 Selector { transition-timing-function: ease-in-out; }

I have tried with the answer you gave but no success! i have updated my discussion with the code.