D
D
derekee2016-10-26 16:13:57
css
derekee, 2016-10-26 16:13:57

How to make such a moving object using CSS?

Hi all!
I’m trying to implement the same clouds as on this site in the first block https://www.xeovo.com
I didn’t manage to steal, so I’m trying to find an approximate article where they describe how to do this.
The most interesting thing is that even on mobile everything displays normally, I won’t show old sketches because there is horror.
I would be very grateful if you help.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alex, 2016-10-26
@derekee

css animation

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question