Reputation: 555
I have a lengthy web page that shows lots of typography designs. Will it be faster to simply load them in images or to use the svg code?
Other than the speed concern, I will choose svg in code simply because I can use css transition and animation to spice up the design.
What other things I need to consider in choosing between the two?
Upvotes: 6
Views: 8003
Reputation: 827
It is better to use SVG element to display typographic designs if your design is not complex.
However it is difficult to display the design in SVG code if your design has complex details.At this time, there is no other option but to go for image.
Upvotes: 8