D
D
DeniSidorenko2020-01-23 14:06:54
css
DeniSidorenko, 2020-01-23 14:06:54

How to make such an appearance effect?

2020-01-22-18-38-41.png
How can I make such a block appearance through animation?
I did it through @keframes in this way

@keyframes sliderv{
  0% {
    transform: translate(-150px, 80px)
  }
  33.3333333% {
    transform: translate(-75px, 0px)
    }

  66.6666666% {
    transform: translate(-35px, -20px)
    }
  100% {
    transform: translate(0,0)}
  
  }

.others-wrapper.active
  .slick-slide.slick-active
    animation-name: sliderv 
    animation-duration 1s

But unfortunately the animation comes with friezes
. The idea is to have a smooth wave effect)
Thanks in advance

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question