.zoomeffect {
width:200px;
height:200px;
margin:40px auto;
-webkit-animation-name: zoom-in-out;
-webkit-animation-duration: 2s;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: normal;
-webkit-animation-fill-mode: none;
animation-name: zoom-in-out;
animation-duration: 2s;
animation-timing-function: linear;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: none;
}
@-webkit-keyframes zoom-in-out {
0%{
-webkit-transform: scale(1);
transform: scale(1);
}
50%{
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100%{
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes zoom-in-out {
0%{
-ms-transform: scale(1);
transform: scale(1);
}
50%{
-ms-transform: scale(1.2);
transform: scale(1.2);
}
100%{
-ms-transform: scale(1);
transform: scale(1);
}
}