jquery-inline-svg

1.0.2 • Public • Published

jQuery Inline SVG

NPM Package Minified Size License: MIT

Takes an <img> with an SVG as its source and replace it with an inline <svg> so you can manipulate the style of it with CSS/JS etc.

Install

npm

npm install jquery-inline-svg

Manually

Download the dist/jquery-inline-svg.min.js and add it to your project.

Usage

<!-- Add some SVG `<img>` tags. -->
<img src="image-one.svg" data-inline-svg>
<img src="image-two.svg" data-inline-svg>
 
<!-- Include the `jquery-inline-svg` script on your page after `jQuery`. -->
<script src="jquery.min.js"></script>
<script src="jquery-inline-svg.min.js"></script>
 
<!-- Inline images. -->
<script>
  $('[data-inline-svg]').inlineSvg();
</script> 
 
<!-- The `<img>` tags have now been replaced with the full SVG markup. -->

Or with ES2015 modules

import $ from 'jquery';
import 'jquery-inline-svg';
 
$('[data-inline-svg]').inlineSvg();

Events

svgInlined event will be fired on every <img> with inlined SVG element as argument

$('[data-inline-svg]').on('svgInlined', function (e, svgElement) {
    const $originalImage = $(this); // <-- original <img> will be removed from the DOM when this event handler function finished
    const $inlinedSvgElement = $(svgElement).addClass('is-loaded');
})

Requirements

This plugin requires jQuery 3

Reference

Inspired by inlineSvg from UIkit 2 https://github.com/uikit/uikit/blob/v2/master/src/js/core/utility.js#L267

Readme

Keywords

Package Sidebar

Install

npm i jquery-inline-svg

Weekly Downloads

158

Version

1.0.2

License

MIT

Unpacked Size

10.3 kB

Total Files

10

Last publish

Collaborators

  • shrpne