Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Change background image and display content on over effect

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 200
    Comment on it

    If you want to change background image and display content on hover effect this code will help you.

    lets say if you want to show a content only when you move a cursor on an image div, and when image changes it will display the content or description of the image which is set in the background of  first image.

    html:

    <div class="feature">
    	<img alt="" src="feature01.jpg" />
        <a href="#">
             <span class="caption">glass</span> // this is the description of image which will appear when user hover on image //
        </a>
    </div>

    css:

    	.feature{
    		float: left;
            position: relative;
    	}
    	.feature a {
            display: block;
            position: absolute;
        	left:0;
        	right:0;
        	top:0;
        	bottom:0;
        	background:#94C83D;
        	display:none;
        }
    	.feature img {
            width: 100%;
            display: block;
        }
    	.feature:hover a{
    		display:block;
    	}
        .feature span {
            color: #fff;
            display: none;
            font-size: 36px;
            font-weight: 100;
            letter-spacing: 1px;
            text-indent: 4%;
            text-transform: uppercase;
            width: 100%;
        	position:absolute;
        	top:40%;
        	display:block;
        }

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: