What is mean by key frames in html? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is mean by key frames in html?

4th Aug 2019, 3:46 AM
VIMALRAJ P
VIMALRAJ P - avatar
1 Answer
+ 3
it's animation; kind of like function () in JS. How it works: .element { animation: name 1s infinite; } - @keyframes name{ 50% { height: 0; height: 50px; } } So you name the @keyframes, inside it you put what you want to happen(animation); im this case, the width transitions to 50px from 0; in one second. The animation won't happen unless you call it with an element .element{ animation-name: name; animation-duration: 1s; animation-iteraction-count: infinite; } I can't really go into details. It's better if you look it up: Google, W3School, CSS-Tricks. --
4th Aug 2019, 4:56 AM
Ginfio
Ginfio - avatar