+ 2
How to add animation in our webpage?
please give me answers for how to add videos/animation on web page .
3 Antworten
+ 3
To add a video use <video> tag:
http://www.w3schools.com/html/html5_video.asp
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
For 'animation' it depends on what you mean... animation movies mostly are just videos, else are pictures files ( gif or svg ) so use <img> tag...
If you mean animate the page by styling effects on html elements, you can do it just with css animation possibilities, and/or handle that with JS. JQuery can be useful for simplify your task, even it's a general tools framework/library and not an towards animation specialized one ^^
+ 2
for web animation i recommended with jQuery, it is the JavaScript library for web animation.
+ 2
thanks