+ 5
Can we create an animation with html?
8 Answers
+ 6
yes using CSS js along with html.
+ 3
in pure html no, but adding javascript and/ css you can
+ 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.
+ 2
you will be able to do with html using javascript
+ 2
No !! about that im soory no animation with pure HTML
+ 1
plz Help Me Friends im new member
+ 1
pure HTML u can not but with scripting n CSS you can do and can have some good animation
0
thanks