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
    • 249
    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:

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

    css:

    1.     .feature{
    2.         float: left;
    3. position: relative;
    4.     }
    5.     .feature a {
    6. display: block;
    7. position: absolute;
    8.     left:0;
    9.     right:0;
    10.     top:0;
    11.     bottom:0;
    12.     background:#94C83D;
    13.     display:none;
    14. }
    15.     .feature img {
    16. width: 100%;
    17. display: block;
    18. }
    19.     .feature:hover a{
    20.         display:block;
    21.     }
    22. .feature span {
    23. color: #fff;
    24. display: none;
    25. font-size: 36px;
    26. font-weight: 100;
    27. letter-spacing: 1px;
    28. text-indent: 4%;
    29. text-transform: uppercase;
    30. width: 100%;
    31.     position:absolute;
    32.     top:40%;
    33.     display:block;
    34. }

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: