I am trying to make a circle and there will be different images surrounding circle. And the images will keep revolving around the circle on an orbit like planets. On hover of those images, I want revolving to stop and I am trying to display some different text in the centre of circle. I have draw a perfect circle, but I am having trouble in aligning those images around the circle and also making it revolving around the circle for infinity. Below image is an example of it.
So basically the smaller circle with numbers are different images and on hover of these images some different texts will be displayed in the centre of big circle and the revolution to be stop. I am also trying to make it responsive so I have added it in a container and trying to put it in col-3.
I am having issue with aligning these images and also displaying the text in the centre of circle. This is what I have tried so far HTML
<div class="col-3 mx-auto" style="background-color: grey;">
<img src="images/location/2x/location.png" style="float: left; ">
<div class="circle">
<div class="text-center">
</div>
</div>
</div>
CSS
.circle{
width: 80%;
height:0;
padding-bottom: 80%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background: #4679BD;
}
What would be the better way to achieve this ?
Any help ?