Can we create an animation with html? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 5

Can we create an animation with html?

8th Nov 2016, 7:00 PM
Stefano Trinca
Stefano Trinca - avatar
8 Respuestas
+ 6
yes using CSS js along with html.
8th Nov 2016, 7:10 PM
Sandeep Chatterjee
+ 3
in pure html no, but adding javascript and/ css you can
8th Nov 2016, 10:51 PM
Maurizio Urso
Maurizio Urso - avatar
+ 3
there are many kind of animation one used by modern websites is by CSS <div class=anim > I Can Move </div> <style> .anim { animation: move 3s linear; } @keyframes move { 0% { left: 0px;} 100% { left: 100px;} } </style> <p>didn't the text above move</p> this is just one kind of animation using CSS. there is transition too but use proper suffix and using js there is animation using timer function property is changed you can use js and CSS too. also there are many other technology for animation on web.
9th Nov 2016, 7:04 AM
Sandeep Chatterjee
+ 2
you will be able to do with html using javascript
9th Nov 2016, 6:19 AM
Midhun Mathew
+ 2
No !! about that im soory no animation with pure HTML
9th Nov 2016, 2:50 PM
Alpha Oumar Pathé BAH
Alpha Oumar Pathé BAH - avatar
+ 1
plz Help Me Friends im new member
9th Nov 2016, 4:00 AM
Akila Sahan Jay
+ 1
pure HTML u can not but with scripting n CSS you can do and can have some good animation
13th Nov 2016, 7:12 AM
Shekhar Bahuguna
Shekhar Bahuguna - avatar
0
thanks
9th Nov 2016, 3:49 PM
Stefano Trinca
Stefano Trinca - avatar