Skip to content

A quick example of using an SVG as sort of a sprite sheet

Notifications You must be signed in to change notification settings

EmmanuelOga/svgfragment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

What's this

A demo of how to include sprites in a single SVG and extract pieces.

  1. Draw SVGs, add wrappers with id="the-id" in the relevant elements (G, SYMBOL, plain PATHs etc.)

  2. Create a SVG with a USE tag like this:

<svg>
    <use xlink:href="/drawing.svg#the-id"></use>
</svg>
  1. Profit.

To automate the process of creating those SVG elements a bit, a lil bit of JavaScript is used:

  // Creates the SVG similar to the piece above within s.element.
  const s = new SvgFragment('drawing.svg', 'the-id');

  // Append!
  document.body.appendChild(s.element);

  // Convenience: move the top/left property of the element.
  s.move(10, 10);

Optimizing the SVG

$ yarn global add svgo
$ svgo --disable=cleanupIDs drawing.svg

About

A quick example of using an SVG as sort of a sprite sheet

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages