Can a unique inset circle clip path be created to cut a hole through the center of a div instead of just showing the center?
The entire div should be visible except for a hole cut out in the center to achieve a design similar to this:
https://i.sstatic.net/6FOaY.png
I am interested in using clip path or a similar technique to showcase images and content behind the div, where the clip path will reveal what is hidden. Essentially, the blue div in my jsfiddle example will gradually disappear from the center to show the content behind it through a transition effect.
div {
background: blue;
width: 200px;
height: 200px;
-webkit-clip-path: circle(50px at center);
}
<div></div>