JSFiddle - React, Tailwind, and code Playground

by jimmzzz

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Blur Animation</title>
  <style>
    .image {
      width: 300px;
      height: 200px;
      background: url('https://plus.unsplash.com/premium_photo-1673263586782-8fa0713158e0?q=80&w=2574&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) center / cover;
      filter: blur(10px);
      transition: filter 0.5s ease; /* Smooth transition of blur */
    }

    .image:hover {
      filter: blur(0); /* Remove blur on hover */
    }
  </style>
</head>
<body>
  <div class="image"></div>
</body>
</html>