Image Fade Effect

Add elegance to your site with a simple fade-in/fade-out effect on hover or click.

Hover over the image above.

Copy the Script

<style>
.fade-item {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.fade-item:hover {
  opacity: 0.5;
}
</style>

<!-- Apply the class to your image -->
<img src="image.jpg" class="fade-item" alt="Fading Image">