Transition effect, animation effect, transform effect

Source: Internet
Author: User

The wording of the transition effect

-webkit-transition:all 5s ease-in 0s;

How the Animation works:

H1 {
-WEBKIT-ANIMATION:CC 10s ease-in 0 infinite alternate;
}
@-webkit-keyframes cc {
0% {color:red;}
20% {color:green;}
50%{color:yellow;}
75%{color:gray;}
100%{color:purple;} /* Purple */
}

h1:hover{
-webkit-animation-play-state:paused; Put the mouse on the animation stop

}

Combining animations and transformations

One:

img{
-webkit-animation:yy 0.2s ease-in 0s infinite normal}
@-webkit-keyframes yy{
From{-webkit-transform:rotate (360DEG)}
to{
-webkit-transform:rotate (0);
}
}

Two:

h1{

width:300px; /* Definition of a wide height does not have the following scroll bar */
-webkit-animation:yy 0.5s ease-in 0 Infinite Alternate;
}
@-webkit-keyframes yy{
from{
-webkit-transform:translate (0,0);}
To{-webkit-transform:translate (100px,100px);}
}

-webkit-transform:scale (0.5,0.5); Less than 1 is scaled down, greater than 1 is enlarged

-webkit-transform:rotate (45DEG); Transform effect rotates 45 degrees

Transition effect, animation effect, transform effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.