Reputation: 5000
How can one recreate the 3D feeling of this interactive visualization (done in Flash) in HTML5/SVG/Canvas or similar? Are there any JS libraries you can recommend?
http://www.guardian.co.uk/world/interactive/2011/mar/22/middle-east-protest-interactive-timeline
Upvotes: 0
Views: 1913
Reputation: 63802
This is not actually 3D, just 2D with perspective.
Many libraries such as D3js (http://d3js.org) aid in making such visualizations, using either Canvas or SVG.
Even for true 3D there are several canvas libraries, the most popular of which is Three.js (http://threejs.org/)
Upvotes: 1