L
L
littleguga2015-03-31 14:58:11
css
littleguga, 2015-03-31 14:58:11

Can you explain CSS3 animation?

There is such an animation
How to make the picture spin counter-clockwise instead of clockwise when it appears?
And can you please give a link to a detailed explanation or explain the action of this one yourself:
transform: matrix(-.01,0,0,-.01,0,-125);
Thanks in advance for the answer!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry, 2015-03-31
@littleguga

.container {
    transform: rotate(-180deg) translate(0px, 125px) scale(0.01, 0.01) ;
  }


@keyframes appear {
  50%{
    transform: rotate(-360deg);
    }
}

See also here link

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question