How to animate the abjects using CSS and HTML | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to animate the abjects using CSS and HTML

24th Aug 2018, 6:30 AM
siddique shaikh
siddique shaikh - avatar
5 Answers
+ 4
If you talking about fixed animation, HTML/CSS alone can perform it. Javascript only needed if there is some logics to apply to the animation. https://code.sololearn.com/WGv6n460d8wP/?ref=app
24th Aug 2018, 8:43 AM
Calviղ
Calviղ - avatar
+ 3
I think you read properly css/html and animation properties.
5th Sep 2018, 12:03 PM
Aaftab Khan
Aaftab Khan - avatar
+ 2
you can only style the objects using html and case. if you want to animate the object you need to include javascript. give it a try
24th Aug 2018, 6:47 AM
Jo$3
Jo$3 - avatar
+ 1
Thank you for help
24th Aug 2018, 11:15 AM
siddique shaikh
siddique shaikh - avatar
+ 1
for e.g. <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> .a1{ font-size:22px; } </style> </head> <body> <div class="a1"> <p>WELCOME</p> </div> </body> </html> try yourself.
5th Sep 2018, 12:06 PM
Aaftab Khan
Aaftab Khan - avatar