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.
MORPH EFFECT: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.
- <style type="text/css">
- .pic img{
- border: 10px solid #fff;
- float: left;
- height: 300px;
- width: 300px;
- margin: 20px;
- overflow: hidden;
- -webkit-box-shadow: 5px 5px 5px #111;
- -box-shadow: 5px 5px 5px #111;
- }
- </style>
- <div class="pic">
- <img src="http://.........."></img>
- </div>
This code will morph the image when you hover it.
- .morph img{
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- .morph img:hover{
- border-radius: 50%;
- -webkit-transform: rotate(360deg);
- -moz-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- <div class="morph pic">
- <img src="........"></img>
- </div>