colorBlend = (svg) => {
return svg.selectAll('circle')
.data( ['#a00', '#a0a', '#0aa'])
.join('circle')
.attr('r', p.r + 10 * timeCurve)
.attr('cx', d => p.w / 2 + 50 * timeCurve * (Math.random() * 2 - 1))
.attr('cy', d => p.h / 2 + 50 * timeCurve * (Math.random() * 2 - 1))
.attr('fill', d => d)
.attr('style', 'mix-blend-mode: multiply;')
}