1
2<svg id="mySVG" viewBox="0 0 600 600" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3<defs>
4 <circle id="bubble" stroke="#ededed" stroke-width="0.5" cx="300" cy="320" r="7"/>
5 <filter id="goo">
6 <feGaussianBlur in="SourceGraphic" stdDeviation="7" result="blur" />
7 <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="cm" />
8
9 <feComposite in="SourceGraphic" in2="cm" >
10 </filter>
11 </defs>
12 <g class="bubbleGroup" >
13 </g>
14</svg>
15