Quantcast
Channel: Gadgetronicx
Viewing all articles
Browse latest Browse all 215

IMAGE HOVER EFFECTS USING HTML AND CSS: PHOTO MORPH EFFECT

$
0
0
Image hover effects using HTML and CSS Moprh effect of the photo
Today we are about to see some sizzling photo effects using HTML and CSS.The hover effects was mainly used to gain the attention of the visitors easily especially to your important images and banners.The choice of the images should be made right to make this effect effective even stunning.See the demo effect sof photo morphing effect here.

CODES:

FRAME AROUND YOUR IMAGE:
The below CSS code will add frame around your image and limit your image effects within the frame and does not disturb the other elements in your webpage.

  1. <style type="text/css">
  2. .pic img{
  3.             border: 10px solid #fff;
  4.             float: left;
  5.             height: 300px;
  6.             width: 300px;
  7.             margin: 20px;
  8.             overflow: hidden;
  9.             -webkit-box-shadow: 5px 5px 5px #111;
  10.             -box-shadow: 5px 5px 5px #111;
  11.                }
  12. </style>
  13. <div class="pic">
  14. <img src="http://.........."></img>
  15. </div>
MORPH EFFECT:
This code will morph the image when you hover it.
  1. .morph img{
  2.              -webkit-transition: all 0.5s ease;
  3.              -moz-transition: all 0.5s ease;
  4.              -o-transition: all 0.5s ease;
  5.              -ms-transition: all 0.5s ease;
  6.              transition: all 0.5s ease;
  7.                    }
  8. .morph img:hover{
  9.             border-radius: 50%;
  10.             -webkit-transform: rotate(360deg);
  11.             -moz-transform: rotate(360deg);
  12.             -o-transform: rotate(360deg);
  13.             -ms-transform: rotate(360deg);
  14.             transform: rotate(360deg);
  15.                              }
  16. <div class="morph pic">
  17. <img src="........"></img>
  18. </div>
The class "morph pic" in the <div> tag adds the CSS properties of both morph and pic codes there by you obtain a image with morph effect inside a frame.You can change the morph color of the border by adding "border-color" to the CSS code under the hover division.
 

Viewing all articles
Browse latest Browse all 215

Trending Articles