Can I use some vector drawing to replace a png in my html?
I have a very well optimized web site and I would like to optimize even more. Specifically I have a fairly large logo that's currently a png. The logo is a very simple shape.
I've never seen this done before but is there a way that I could code in the drawing of this logo using some vector drawing code within my html? I realize it's probably possible with HTML5 but what about HTML4 and current browser support.
Thanks,
Jane East开发者_如何学Goerby
Using SVG within your website will only have compatibility with some non-IE browsers. SVG though could be replaced dynamically by your script based on the visitor though.
And yes, it can be done in HTML 4 (by some browsers, generally those that already support HTML 5 anyway.)
Some guides:
http://www.w3schools.com/svg/svg_inhtml.asp
http://codinginparadise.org/projects/svgweb/docs/QuickStart.html
http://msdn.microsoft.com/en-us/library/gg589526(v=vs.85).aspx
精彩评论