how to create animation in html? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 4

how to create animation in html?

1st Oct 2016, 8:10 PM
Ankit Singh
Ankit Singh - avatar
10 Antworten
+ 30
you can get familiar with creating animations in Solo learns JS course (in the last module)
2nd Oct 2016, 8:55 AM
Emma
Emma - avatar
+ 9
As far as i know there is not possible way to create animation using only HTML.You need to use at least CSS or javascript.
1st Oct 2016, 8:29 PM
Вилиан Василев
Вилиан Василев - avatar
+ 2
html5 + css has it, no need for javascript. see www.eddylucas.co.nf sorry... changed my site... no animatoin...
13th Nov 2016, 1:08 PM
Eddy Lucas
Eddy Lucas - avatar
+ 1
learn css, JavaScript, jQuery
6th Nov 2016, 5:30 AM
Dhruv Saxena
Dhruv Saxena - avatar
- 1
ok i will see
1st Oct 2016, 8:31 PM
Ankit Singh
Ankit Singh - avatar
- 1
I think this is not possible, you need to use CSS3
16th Nov 2016, 8:27 PM
Djaber Meghar
Djaber Meghar - avatar
- 1
My site has a css.hover tricker to use css animation.
16th Nov 2016, 8:32 PM
Eddy Lucas
Eddy Lucas - avatar
- 1
It is possible with CSS3 using "@keyframes" for that follow these steps: 1.Create and element you want to animate. i.e div 2(a)Add following "animation-name" property in it's style. i.e animation-name:example. 2(b). Add animation duration i.e animation duration:5s; 3. Now you can add animation to div through @keyframes. Now in style tag add following text: @keyframes example { from {css property:property's value} for example from {width:300px} It is initial style property of element. then add to {width:500px} So div element will became 200px wider in 5 seconds
19th Dec 2016, 11:19 AM
Amir Khan
Amir Khan - avatar
- 1
The best form is using CSS3 and is easy
13th Feb 2017, 12:56 PM
Santiago Collazos Barrera
Santiago Collazos Barrera - avatar
- 2
you can use adobe flash cs3 also
18th Nov 2016, 4:17 PM
Ayush chadha
Ayush chadha - avatar