How to create animated tooltips with CSS3

How to create some simple, animated tooltips using CSS transitions and the pseudo-classes :before and :after

CSS3Tooltips

In today’s tip we’ll show you how to create some simple, animated tooltips using CSS transitions and the pseudo-classes :before and :after.

The idea is to have a list with links or in our case, social icons, that reveal a little tooltip on hover.

The unordered list will look like this:

<ul class="tt-wrapper">
	<li><a class="tt-gplus" href="#"><span>Google Plus</span></a></li>
	<li><a class="tt-twitter" href="#"><span>Twitter</span></a></li>
	<li><a class="tt-dribbble" href="#"><span>Dribbble</span></a></li>
	<li><a class="tt-facebook" href="#"><span>Facebook</span></a></li>
	<li><a class="tt-linkedin" href="#"><span>LinkedIn</span></a></li>
	<li><a class="tt-forrst" href="#"><span>Forrst</span></a></li>
</ul>

The list elements will be floating left and the anchors will have the following style:

.tt-wrapper li a{
	display: block;
	width: 68px;
	height: 70px;
	margin: 0 2px;
	outline: none;
	background: transparent url(../images/icons.png) no-repeat top left;
	position: relative;
}

Each anchor will have a different background position for the background image:

.tt-wrapper li .tt-gplus{
    background-position: 0px 0px;
}
.tt-wrapper li .tt-twitter{
    background-position: -68px 0px;
}
.tt-wrapper li .tt-dribbble{
    background-position: -136px 0px;
}
.tt-wrapper li .tt-facebook{
    background-position: -204px 0px;
}
.tt-wrapper li .tt-linkedin{
    background-position: -272px 0px;
}
.tt-wrapper li .tt-forrst{
    background-position: -340px 0px;
}

The span will work as our tooltip and we will “hide” it by setting its initial opacity to 0. The effect I want to share with you is the tooltip fading in and appearing from the top, so we will give it a bottom of 100px, placing it above the anchor:

.tt-wrapper li a span{
	width: 100px;
	height: auto;
	line-height: 20px;
	padding: 10px;
	left: 50%;
	margin-left: -64px;
	font-family: 'Alegreya SC', Georgia, serif;
	font-weight: 400;	
	font-style: italic;
	font-size: 14px;
	color: #719DAB;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	text-align: center;
	border: 4px solid #fff;
	background: rgba(255,255,255,0.3);
	text-indent: 0px;
	border-radius: 5px;
	position: absolute;
    pointer-events: none;
	bottom: 100px;
	opacity: 0;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
	transition: all 0.3s ease-in-out;
}

Since we will make the tooltip appear on hover over the anchor (and the span counts as part of the anchor) the tooltip will also appear when hovering over the area above the anchor (the span is still there, it’s just the 0 opacity that makes it invisible).

For the little pointer, we will style the pseudo-elements :before and :after. We will style them the same way and create a triangle by using transparent left and right borders. The :before pseudo-element will serve as a shadow for the :after pseudo-element, so we’ll give it a black rgba value with a low opacity:

.tt-wrapper li a span:before,
.tt-wrapper li a span:after{
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -9px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid rgba(0,0,0,0.1);
}

The :after pseudo-element will be placed a pixel away and we’ll make it white, just like the border of the tooltip itself:

.tt-wrapper li a span:after{
	bottom: -14px;
	margin-left: -10px;
	border-top: 10px solid #fff;
}

So, on hover, we will make the span move from the top and fade in:

.tt-wrapper li a:hover span{
	opacity: 0.9;
	bottom: 70px;
}

And voilร ! Very simple animated tooltips! In the second demo, you can see an alternative style for the tooltip (a funny circle) which scales up from the anchor and in the third demo the tooltips are rotated. The forth demo shows another neat effect.

The beautiful social icons in the demo are by Emir Ayouni (growcase.com).

I hope you enjoyed this little effect and find it useful!

Needless to say, this will only work in browsers that support pseudo-elements and CSS transitions.

Image Credits:
Abstract Vector Image By Vectorportal.com

Tagged with:

Manoela Ilic

Manoela is the main tinkerer at Codrops. With a background in coding and passion for all things design, she creates web experiments and keeps frontend professionals informed about the latest trends.

Stay up to date with the latest web design and development news and relevant updates from Codrops.

Feedback 54

Comments are closed.
  1. Very nice, but I need to ask, how to generate RGBA fastly? do you use photoshop? or generated by your editor?

  2. I think the tooltips should not be triggered when hovering outside the icons. For supported browsers you could add pointer-events: none to the .tt-wrapper li a span selector to prevent that.

    Otherwise, they look very nice.

  3. How can I make the TOOLTIP “touchable”?!

    Like use it as an dropdown-thingie?! ๐Ÿ™‚

  4. In Chrome, demo #4 displays a quick blue flash before you hover over the element. Not sure if that’s a bug or a feature ๐Ÿ™‚

  5. Amazing.

    Love how simple it is to change a few attributes and create a totally new animation effect.

    I simply changed the following css from demo 4 which created a neat spinning/depth effect.

    -moz-transform: translate(35px) rotate(180deg) scale(0.5); -moz-transition: all 0.5s ease-in-out;

    • Try using list-style-type: none; on the LI elements in the CSS. That should remove the dots for you ๐Ÿ™‚

  6. Although the effect is neat, there’s a major feature missing: the ability to enjoy it when you are a (sighted) keyboard-only user. Indeed you are able to tab through the icons, but you have no visual cues of where the focus currently is. Plus, you don’t get the benefit of the tooltips, since they are not triggered.
    Both could be solved easily, though:
    – do not suppress the outline (via the outline:none declaration). Outlines are extremely useful, modern browsers handle them very well, so, please, just leave them alone. And if you want, you can style them at will
    – use the :focus pseudo-class whenever you use :hover. Simple, and it does the job perfectly well.
    For more info about :focus, check Nomensa’s blog.

    With these two little changes, you’ll have a much better product, that is: more universally usable than before.

  7. I’ve got problem. I paste this “Style2” css code in “Add custom CSS” on my page and it doesn’t work. Did I do something not right?

  8. demo number 3 make someone around the head ๐Ÿ˜€
    WOW new pic by master Mary Lou…hohohoho ?

  9. Really an excellent how to article about creating animated tool tips. Tool tips are very important in a good web design.Thanks for sharing the code as well.

    Regards,

    Amelie Wakelin

  10. thank you I learned some new stuffs, but, how should we do? I can’t garanty that it will work on all web browsers, I don’t really know css 3 but do you think that we should start using it at a large scall, for busness websites for exemples?

  11. Thank you for the great demos and tutorials! So I have one problem troubled. If I move the mouse over and over again using demo2 ~ 4 on Mac Chrome17, the screen will go black-out for a moment when “on mouse over” and “on mouse out”. This does not happen on Safari5.1.2, Opera11.61 and FireFox10. What action is how should I do? Also, do you think this cause is what?

  12. I like this tool tips tutorial. But i don’t know how to install this in a wordpress blog. Please help me to implement this in my blog.

  13. Wow, your demo site works amazing, I don’t know how you can archive it with only CSS3, or does it need jQuery in order to work?

  14. I like this tool tips tutorial!!! but how to solve the problems with internet explorer??

  15. fantastic tooltip, thank you for sharing this! Any idea on how to make it look nice on IE8? Stupid IE again, never displays anything correctly, it makes the hover boxes appear visible even when you arent hovering over the icon.

  16. Thanks for the tip. Does it work if the links are words instead of background images?

  17. Thanks for the tip. Does it work if the links are words instead of background images?