Hello World in SVG

posted on 2009-09-15 17:52:52+08:00 by david
SVG
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!-- Hello World in SVG -->
  3.  
  4. <svg width="240" height="100" viewBox="0 0 240 100" zoomAndPan="disable"
  5. xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  6. <title>Hello World</title>
  7. <g>
  8. <text x="10" y="50">Hello World</text>
  9. <animate attributeName='opacity' values='0;1' dur='4s' fill='freeze' begin="0s"/>
  10. </g>
  11. </svg>

All Code Snippets

Hot Code Snippets

New Code Snippets