4th May 2025, 8:52 AM
Kajgeazy
Kajgeazy - avatar
6 Answers
+ 5
Kajgeazy checkout this amazing course:- https://www.sololearn.com/learn/courses/css-introduction if you get stuck somewhere feel free to ask here, we are here 24x7 to help you but pls ask meaningful and coding related questions Happy coding!
4th May 2025, 12:05 PM
Alhaaz
Alhaaz - avatar
+ 4
Yes, you can create animations with CSS.
4th May 2025, 9:02 AM
Keith
Keith - avatar
+ 1
Kajgeazy , yes, you can. There are two ways to do this: 1.Transitions These are simple animations activated by changes in class or css properties like hover, active etc. Eg: .button { background-color: green; transition: background-color 0.3s ease, transform 0.3s ease; } .button:hover { background-color: blue; transform: scale(1.1); } 2. Keyframes animations They sre more complex and can be repetitive. selector { animation: *name *duration *iteration-count *direction } @keyframes *name{ from{*property} to {*property} } Hope this helps.
4th May 2025, 11:33 AM
Ushasi Bhattacharya
0
Kajgeazy ๐—ฌ๐—ฒ๐˜€, ๐—ฌ๐—ผ๐˜‚ ๐—ฐ๐—ผ๐˜‚๐—น๐—ฑ ๐—ฐ๐—ฟ๐—ฒ๐—ฎ๐˜๐—ฒ ๐—ฎ๐—ป๐—ถ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป๐˜€ ๐—ฏ๐˜† ๐˜๐—ต๐—ฒ ๐—ง๐—ฟ๐—ฎ๐—ป๐˜€๐—ถ๐˜๐—ถ๐—ผ๐—ป๐˜€(๐—ฒ๐—ด:๐—ต๐—ผ๐˜ƒ๐—ฒ๐—ฟ) ๐—ผ๐—ฟ ๐—ฏ๐˜† ๐˜‚๐˜€๐—ถ๐—ป๐—ด ๐—ž๐—ฒ๐˜†๐—ณ๐—ฟ๐—ฎ๐—บ๐—ฒ๐˜€ ๐—ฎ๐—ป๐—ถ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป๐˜€ ๐—ฏ๐˜† ๐˜‚๐˜€๐—ถ๐—ป๐—ด ๐—ž๐—ฒ๐˜†๐—ณ๐—ฟ๐—ฎ๐—บ๐—ฒ๐˜€๐Ÿคž
5th May 2025, 4:13 PM
๐—Ÿ๐—ผ๐—ธ๐—ฒ๐˜€๐—ต๐˜ƒ๐—ฎ๐—ฟ๐—ฒ๐—ป ๐—ž
๐—Ÿ๐—ผ๐—ธ๐—ฒ๐˜€๐—ต๐˜ƒ๐—ฎ๐—ฟ๐—ฒ๐—ป ๐—ž - avatar
0
Okay thanks
6th May 2025, 11:58 PM
Kajgeazy
Kajgeazy - avatar
0
Kajgeazy , you're welcome. Happy coding.
7th May 2025, 12:21 AM
Ushasi Bhattacharya