Can we use both SVG and canvas tag on same page? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Can we use both SVG and canvas tag on same page?

27th Apr 2017, 6:56 PM
Harsh Kumar
Harsh Kumar - avatar
7 Answers
+ 17
Yes, you can.
27th Apr 2017, 7:08 PM
@bayoishola20
+ 16
Yeah Sure
27th Apr 2017, 7:59 PM
Kailash Loncha
Kailash Loncha - avatar
+ 15
Yeah, totally. There are appropriate scenarios to use each, sometimes it is best to use Canvas, sometimes SVG and sometimes both. - Canvas is a tag in HTML you can paint on, you can tell it to paint shapes, to spray pixels and it becomes a bitmap, these pixels are manipulated with code. Once you've done that it forgets about it, that's why they call it an "immediate mode" graphics, a "fire and forget model" meaning it has no context as to what was done. USE CASES: When there are too many objects to put in the screen, with Canvas you can easily spray them all. - SVG on the other hand is part of the document, they call it a "retained mode" meaning all the shapes and paths are retained in memory, they also benefit from the ability to style them with CSS, you can target individual elements for events. One cool thing is that if you zoom in or if you are in a large monitor it will not rasterize (like Canvas does) USE CASES: As full documents, as images, logos, for rich, static or animated filter effects, as CSS images, visualizing data (charts, maps, graphs), specially if the user is manipulating data, so interactivity is key. - Both SVG and Canvas. For example, if you want to create a world map and you want to put interactivity to it, you can create it with SVG, this way you can specify some hover effects on each country so they get highlighted individually, SVG comes in handy if you wanted to change a small part of the world map. Using Canvas at the same time will help you add/layer a weather map made of lots of clouds on top of the SVG world map and animate it.
28th Apr 2017, 10:36 PM
Pao
Pao - avatar
+ 10
@Tim aww, I'm glad you find them useful 😊 I think the "why" is always the juicy part of an answer, and examples are key too ☺
29th Apr 2017, 1:53 AM
Pao
Pao - avatar
+ 9
@Paola, you always explain everything in so much detail.. It's very helpful! Thank you.(:
28th Apr 2017, 11:50 PM
Tim G
Tim G - avatar
+ 6
very nice explanation paola
18th May 2017, 11:02 AM
Ramanpreet Singh
Ramanpreet Singh - avatar
+ 4
yes
13th May 2017, 4:15 AM
Sumita
Sumita - avatar