JSFiddle - React, Tailwind, and code Playground

JavaScript

var w = 800;
var h = 600;

var paper = Raphael(0, 0, w, h);

paper.image("http://static.pourfemme.it/pfmoda/fotogallery/625X0/63617/borsa-alviero-martini-rodeo-drive.jpg", 0, 0, w, h);

// paper.rect(0, 0, w, h).attr("fill", "#999").attr("stroke-width", 0).attr("opacity", 0.8);

var c = paper.circle(400, 300, 1);

c.attr({stroke: "#999", "stroke-width": w*2});

//c.animate({r: w*2}, 2000);

anim = Raphael.animation({r: w*2}, 6000);

c.animate(anim.delay(100));