CSS Animation
CSS Animation
@keyframes
animation-name
animation-duration
animation-delay
animation-iteration-count
animation-direction
animation-timing-function
animation-fill-mode
animation
The @keyframes Rule
When you specify CSS styles inside the @keyframes rule, the animation will
gradually change from the current style to the new style at certain times.
Properties of Animation:-
animation-iteration-count he animation-iteration-count CS
S property specifies the number of
times an animation cycle should be
played before stopping.
animation-iteration-count:
infinite;
animation-iteration-count: 3;
Css Grid
CSS Grid Layout is a powerful layout system in CSS that allows developers
to create complex web layouts with ease. It provides a grid-based layout
system, with rows and columns, making it easier to design web pages
without having to use floats and positioning.
Basic Concepts
Grid Properties
Grid Template
Grid Gaps
The spaces between each column and row are called gaps. You can adjust
the gap size using the column-gap, row-gap, or gap properties. For
example:
Grid Lines
Grid lines are the lines between columns and rows. You can refer to line
numbers when placing a grid item in a grid container. For example:
Advanced Features
Grid Areas
Auto-Placement