svg path animation

svg path animation and convert polygons to path using jquery

HTML

<div style="width:100%;float:left;">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 1920 1085.1" style="enable-background:new 0 0 1920 1085.1;" xml:space="preserve">

<path id="a" class="st0" d="M0,0L1920 0 1920 897.3 1920 1080 0 1085.1 z"/>
<path  id="b" class="st0" d="M1686.7,974.7L1674.7 1080 1838 1079.3 z"/>
<path id="c" class="st0" d="M1920,897.3c0,0-189.4,3.8-231.7,24.6c-1.4,0.7-2.6,1.4-3.7,2.1c0,0-17.3,8,0,47.3l152,108
	l83.3,0.7l-227.4-160"/>
<path id="d" class="st0" d="M1751.1,908.1l-2.1-10.8l-11.3-1.3c0,0-15.7-2.3-15.7-8.3c0,0-12.7,10.5-20.3,10.2l-19.3-2.6
	h-21.7V867l-41.7,2.3c0,0-25,3-23-13l-8.7-2.7v-20.3c0,0-9.7-8.7-20.3-3.7V825l-19.3-12.7c0,0-44-10.7-51.7-7V801h-4.3
	c0,0-0.7-50.7,5.3-75.3l7.3-82.7l10-89l9.7-96.3l8-87l4.7-55l7.7-75.7l4-47l5-56l2.7-36l3.7-50.7l2.7-23.3l2-18.7l-1-7.3L1920,0
	v300.7l-14.7,109.7l-14.7,110L1878,633.7l-12,97c0,0-8,51-7,58l-12,108.7L1751.1,908.1z"/>
<path  id="e" class="st0"  d="M1493.3,752L1333.3 658 1365.3 0 1563.3 1 z"/>
<path id="f" class="st0" d="M1328.7,658.7l-708,31.3L608,483.3c0,0-12.7-207.3-23.3-225.3c0,0-63.3-170-224.7-210.7
	c0,0-130.7-57.3-268-9.3c0,0-92,47.3-92,62.7V144l19.3-21.3l22,195.3L66,542.5l15.3,126.1l6,41.3l533.3-20"/>
<path id="g" class="st0" d="M46.8,221c0,0,14.8-3.8,0-22.3l-11.5-2l-5.8-44.3h10.3c0,0-0.8-23.5,10.3-25.5
	c0,0,9.8-4.3,18.8,8.8l10.3,2.5c0,0,1.3-5-4-5c0,0,5.8-7.5,7.5,6.8c0,0-0.3,5-14,0c0,0-10.8-15.8-20-8c0,0-5.8,11.5-3.8,20.8
	l6.3,46.8c0,0,10.5,16,0,23.3C51,222.8,45.8,223.3,46.8,221z"/>
<path id="h" class="st0" d="M1249.3,732.3c0,0-3.7-42.3-2-45.3l4.7-43.3l4-64l3-47.3l3.7-82.7l-201.7-7.3h-1.7
	c0,0-2,34.3-8.7,41.3c0,0-0.3,51.3-62.3,84.3l-2.3,32.3c0,0-4,67.1-2.3,70.3l5.3,106.7l-0.7,2.3h16.7l0.3-24.7
	c0,0,9.3-13.3,19.7-9.3c0,0,134.7,7.7,139.7,16.7c0,0,34,0,31.3,43l14.3,2.7l3-3.7c0,0-0.3-49.7,1-49.7l14.3-25.7l4.3-9l0.3,12.7
	l0.3,2l14.7-0.7L1249.3,732.3z"/>
<path id="i" class="st0"...

CSS

img,svg {
display: none;
}

svg, img {
  width: 100%;
  /*height: 100%;*/
  position: absolute;
  /*top: 400px;
  left: 0;
  right: 0;
  bottom: 0;*/
  margin: auto;
}
svg path, img path {
  stroke: black;
  stroke-width: 3;
}
.st0{fill:none;stroke:#DCE11F;stroke-miterlimit:10;}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}