codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

CSS Transitions and Animations. Motion Path Module CSS

Stfalcon.com
codeburst
Published in
6 min readOct 17, 2017

--

CSS transitions

transition-property: width;
transition-duration: 1s;
transition-timing-function: cubic-bezier(0, 0, 1, 1);
transition-delay: 500ms;
transition: background-color 1s cubic-bezier(0, 0, 1, 1) 500ms;

CSS animations

animation-name: my-animation;@keyframes my-animation { 
0% { opacity: 0; }
100% { opacity: 1; }
}
animation-iteration-count: 2;
animation-direction: reverse;
animation-play-state: paused;
animation-fill-mode: backwards;

Motion Path Module

motion-path: path('M 235,323 Q 412,440 365,615 Q 400,300 670,240 L 870,340 L 975,535 Q 730,600 630,535 z');
@keyframes airplane-fly { 
0% { motion-offset: 0; }
100% { motion-offset: 100%; }
}
motion-rotation: auto;

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Stfalcon.com

IT company designing custom web services and mobile apps. Our goal is to create useful and convenient software. We are the founder of the Air Alert app

No responses yet

Write a response