.circle {
  -webkit-clip-path: circle(120px at center);
          clip-path: circle(120px at center);
}
.circle:hover {
  cursor:move;
}<img src="http://www.publicdomainpictures.net/pictures/10000/nahled/2185-1265776088aCTz.jpg" alt="" class=" circle">Is there a way to have hover just apply on the visible part of the image?
Only what I can see to make it work is to add a wrapper element and apply the clip to that but the hover state to the inner element.
.wrapper {
  display:inline-block;
  -webkit-clip-path: circle(120px at center);
          clip-path: circle(120px at center);
}
.circle {
  display:block;
}
.circle:hover {
  cursor:move;
}<div class="wrapper"><img src="//placehold.it/300" alt="" class=" circle"></div>If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With