Current File : /home/kelaby89/muzza.fit/wp-content/plugins/wolf-visual-composer/scss/global/_zoomin.scss |
.wvc-zoom-bg{
opacity: 0;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
}
.wvc-img-bg-effect-zoomin,
.wvc-zoomin {
animation: wvczoomin 120s infinite linear 1s;
}
.wvc-column-bg-effect-zoomin,
.wvc-row-bg-effect-zoomin{
overflow: hidden;
}
.wvc-row-bg-effect-zoomin > .wvc-img-bg{
animation: wvcbgzoomin 120s infinite linear 1s;
}
@keyframes wvczoomin {
0% {
transform:scale(1);
}
50% {
transform:scale(1.5);
}
100% {
transform:scale(1);
}
}
@keyframes wvcbgzoomin {
0% {
transform:scale(1);
}
50% {
transform:scale(1.25);
}
100% {
transform:scale(1);
}
}
@keyframes rotate {
from {transform: rotate(0deg);}
to {transform: rotate(180deg);}
}