On Hover Change text to image using simple css code.

Here will see how to create the concept like on hover the text display the image. The particular image shown from bottom to top slide effect. on mouse hover the text will hide and image will display with slide effect. on mouse out the image will hide and the text will display.

This is one of the simple concept it will done by using simple css code. Here is the example shows the concept. In this example the text his 'Hover Here' when you hover the text my tutorial logo will display. This types of concept will use for some place in websites.

Now will see how it works first the div called .c--anim-btn this div first we should set the height of the div to give overflow hidden for this div and then on over the div margin-top will give show the logo will visible particular place the text will be hide. I hope this example is useful.






<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CSS3 hover text animate in div</title>

<style>
.c--anim-btn span {
color: black;
text-decoration: none;
text-align: center;
display: block;
}

.c--anim-btn, .c-anim-btn {
transition: 0.3s;  
}

.c--anim-btn {
height: 64px;
font: normal normal 700 1.2em/4em Arial,sans-serif;
overflow: hidden;
width: 200px;

}

.c-anim-btn{
margin-top: 0em;
}

.c--anim-btn:hover .c-anim-btn{
margin-top: -4em;
}
</style>

</head>
<body>
<!-- HINT: hover over button -->
<div class="c--anim-btn">
<span class="c-anim-btn">
Hover Here
</span>
<span>
<a href="http://sanwebcorner.com"><img src="san-logo.png" style="    height: 35px;
margin-top: 15px;"></a>
</span>
</div>
<h2><a href="http://sanwebcorner.com">www.sanwebcorner.com</a></h2>
</body>
</html>

Post a Comment

0 Comments