+ 1
What is the best beginner computer language to learn?
I have just started learning a few basic Python concepts, but I want to know if it's good for making basic animations. If it isn't, what is the best language for basic animations?
2 Answers
+ 8
html, css, js can be used for animations.
+ 4
HTML, CSS and JavaScript would you help you to build a website with few built-in animations. But for custom built animations, you need to learn WebGL. Its not a programming language, but a library. You can interact it with JavaScript.
But you have to consider three points:
1. Most modern browsers support WebGL except IE.
2. Using WebGL will affect loading time on large scale.
3. Learning WebGL is little harder than HTML and CSS.