تقييمات الطلاب
( 4.8 من 5 )
٥ تقييم
A
ABDULLAH YOUSEF
08-07-2024
فيديو شرح بالعربي css animation انميشن how to create slider using css only ضمن كورس CSS شرح قناة Abdelrahman Gamal، الفديو رقم 21 مجانى معتمد اونلاين
CSS Animations
CSS allows animation of HTML elements without using JavaScript or Flash!
What are CSS Animations?
An animation lets an element gradually change from one style to another.
You can change as many CSS properties you want, as many times you want.
To use CSS animation, you must first specify some keyframes for the animation.
Keyframes hold what styles the element will have at certain times.
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.
To get an animation to work, you must bind the animation to an element.
The following example binds the "example" animation to the DIV element. The animation will last for 4 seconds, and it will gradually change the background-color of the DIV element from "red" to "yellow
Animations can improve the UX of an interface, but keep in mind that they can also get in the way of your users! Please read the best practices and gotchas sections to bring your web-things to life in the best way possible.
Responsive Slider Using HTML & CSS Only