Amazing Image Hover Effects with Webkit and CSS 3

Sep18

I’ve been playing with Webkit transitions for quite sometime and so far I’m really impressed with what it can do. Animations and effects that I thought was only possible with jQuery is now possible with CSS and webkit.

amazing-image-hover-effects-lead-image

Webkit is impressive. I’ve been tinkering with Google Chrome and Safari 4, the main browsers that use the Webkit rendering engine, and all I can say is they’re both fast and real good browsers. What I thought was only possible with a few Javascript snippets is now possible with webkit. In this post, I will show you demonstration and examples of what Webkit and CSS can do.

Image Shrink Effect

The image will shrink if you put your mouse pointer on top of it. It is achieved by using the -webkit-transform:scale(value) property.

The HTML

 <div id="demo-1" class="demobox">
	<img src="optimusprime.jpg"/>
</div>

The CSS

#demo-1 img {
	-webkit-transform: scale(1);
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 500ms;
}
#demo-1 img:hover{
	-webkit-transform: scale(.5);
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 500ms;
}

Notice how the HTML looks very simple. It’s just a simple <img/> tag but with webkit, you can achieve a very cool effect.

Fade Out Image Effect

On mouse hover, the image will fade out to 50% opacity smoothly.

The HTML

<div id="demo-2">
<img src="optimusprime.jpg"/>
</div>

The CSS

#demo-2 img {
opacity: 1;
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}
#demo-2 img:hover{
opacity: .5;
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}

Fade in Description Box Effect

When you hover your mouse over the image, a box will fade in smoothly with its title and description.

The HTML

<div id="demo-3">
	<img src="optimusprime.jpg"/>
	<div>
		<h3>Transformers</h3>
		<p>More than meets the eye</p>
	</div>
</div>

The CSS

#demo-3{position:relative;}
#demo-3 img{
opacity:1
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}
#demo-3 .details{
position:absolute;
top:0;
left:0;
opacity: 0;
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}

#demo-3 .details:hover{
opacity: .9;
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}

Image Slide Out Effect

The image is above the description box and when the mouse is hovered over the image, it will slide out revealing the description box.

The HTML

<div id="demo-4">
	<img src="optimusprime.jpg"/>
	<div>
		<h3>Transformers</h3>
		<p>More than meets the eye</p>
	</div>
</div>

The CSS

#demo-4{position:relative;}
#demo-4 img{
position:absolute;
top:0;
left:0;
-webkit-transition: margin-left;
-webkit-transition-timing-function: ease-in;
-webkit-transition-duration: 250ms;
}
#demo-4:hover img{
margin-left:200px;
}
#demo-4 .details{
position:absolute;
top:0;
left:0;
z-index:-1;
}

Slide In Box Effect

The description box will slide in on top of the image on mouse hover.

The HTML

<div id="demo-5">
	<img src="optimusprime.jpg"/>
	<div>
		<h3>Transformers</h3>
		<p>More than meets the eye</p>
	</div>
</div>

The CSS

#demo-5{position:relative;}
#demo-5 .details{
opacity: .9;
position:absolute;
top:0;
left:0;
margin-left:-200px;
-webkit-transition: margin-left;
-webkit-transition-timing-function: ease-in;
-webkit-transition-duration: 250ms;
}
#demo-5:hover .details{
margin-left:0;
}

Zoom in Box Effect

The description box will zoom out from the middle of the image when the image is triggered by mouse hover.

The HTML

<div id="demo-5">
	<img src="optimusprime.jpg"/>
	<div>
		<h3>Transformers</h3>
		<p>More than meets the eye</p>
	</div>
</div>

The CSS

#demo-6{
 position:relative;
 }
 #demo-6 img{
 position:absolute;
 top:0;
 left:0;
 z-index:0;
 }
 #demo-6 .details{
 opacity: .9;
 position:absolute;
 top:100;
 left:150;
 z-index:999;
 -webkit-transform: scale(0);
 -webkit-transition-timing-function: ease-out;
 -webkit-transition-duration: 250ms;
 }
 #demo-6:hover .details{
 -webkit-transform: scale(1);
 -webkit-transition-timing-function: ease-out;
 -webkit-transition-duration: 250ms;
 }

These examples are just a few things the Webkit engine can do. The question now is, can we use these on real world projects? Why, of course. We might just need a little work for browsers that doesn’t support these awesome transition effects.

Here are some good resources and articles that you might want to check out:

Tags: , , , ,

Comments

Wanna share your thoughts? Leave a message
23
  1. Gordon
    September 22nd, 2009
    at 10:02 am

    Nice demo. Too bad only webkit would support these kind of awesome animation effects.

  2. Linda
    September 27th, 2009
    at 3:52 am

    Great stuff. Thanks.

  3. Linda
    September 27th, 2009
    at 3:55 am

    Now I will have to figure out how to do the transition in the onclick of a link to transition to a div of text. I guess it would take changing the class of the link?

    • Brad Kemper
      April 6th, 2010
      at 12:03 pm

      Yes. Or, if you want it only when moused-down, and then back to normal on mouse-up, then you could use the :active pseudo-class.

  4. Jeremy Swinnen
    September 27th, 2009
    at 6:32 pm

    Nice example. How can i show an image on hover and active?

  5. dani
    October 21st, 2009
    at 10:57 pm

    there’s a little mistake in demo5…

    the inner div needs to have the class=”details”

    so that it looks like this:

    Transformers
    More than meets the eye

    but thanks a lot for the examples they are pretty nice

  6. dani
    October 21st, 2009
    at 10:59 pm

    oh sorry, havent thought about, that this box is able to read html ;)

    next try.. :

    Transformers
    More than meets the eye

  7. impressive

  8. Hey, this is cool! Wonder when all these features will be implemented in all major web browsers…

  9. Nice effects indeed . Webkit based browser are great and designing for them is a pleasure.

    Thank you for these examples !

  10. Awesome efects with CSS3, now javascript isn’t necessary, hihi ;D

  11. if i replaced img with a, would that make my links fade in and out like that???

  12. Awesome tutorial. I have added this on my css aggregator site, hope you dont mind. :)

  13. very good work, i enjoy it!!

  14. Gareth
    July 8th, 2010
    at 12:26 am

    Yo Dino

    Fantastic article, thank you for writing this up!

    I might be an idiot — with ‘Image Slide Out Effect’ how to I get the image to slide UP and not to the RIGHT?

    Is this possible?

    Any help would be greatly appreciated.

  15. Hi,

    Article on Amazing Image Hover Effects with Webkit and CSS 3 is good and Website professional would take help to design and develop the Websites.

    Dayanand from eprofitbooster.com

  16. Bim
    July 9th, 2010
    at 6:03 pm

    Great stuff, about time something like this became widely supported.

    Can start making nicely designed web pages without having to switch to a heavy program such as flash, plus it actually interacts with the html of the page!

  17. of course it’s worth pointing out that these are not webkit exclusive…if, for instance, you find/replace “-webkit” in your css and use “-o” they all magically also work in the latest version of Opera (full disclosure: I work for Opera in their Developer Relations team)

  18. Thank you for these examples.

Leave a Reply

Tell us what you think

Commenting Rules

  1. Anonymous comments will be disapproved. You don't need to sign up or register. All I'm asking from you is to leave your real identity.
  2. Learn respect to gain respect!
  3. Hate comments and personal attacks are not allowed.
  4. I hate SPAM so do not worry about your emails, I won't use them or share them for personal gain.
  5. I reserve the right to moderate.

Find me on the Web

Other places you can find me

Daily Digest

Resource Sites for Inspiration

Extra Stuff

Represent!

Search this Website

Looking for something specific?