@
@
@gtunit2014-09-11 22:21:34
PHP
@gtunit, 2014-09-11 22:21:34

How to make an animation when hovering over a product image in ocStore?

It is necessary that when you hover the mouse cursor over a product in the catalog, the entire block with this product (picture, price, etc.) moves forward (increases) a little.
We are talking about this store www.wonki.ru ocStore
engine.
Thanks for the help.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Evgeny Petrov, 2014-09-11
_

@keyframes appear{
  30%{
    transform:scale(1.1, 1.1);
  }
  100%{
    transform:scale(1, 1);
  }
}
@-webkit-keyframes appear{
  30%{
    -webkit-transform:scale(1.1, 1.1);
  }
  100%{
    -webkit-transform:scale(1, 1);
  }
}
.image:hover{
  animation:appear .5s;
  -webkit-animation:appear .5s;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question