<div class="rippleBackground jsRippleBackground"></div>
.rippleBackground {
width: 400px;
height: 300px;
background-image: url(https://picsum.photos/id/89/400/300);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
max-width: 100vw;
max-height: 100vh;
}
<script src="https://code.jquery.com/jquery-3.7.1.slim.min.js" integrity="sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.ripples@0.6.3/dist/jquery.ripples.min.js"></script>
<script>
$(".jsRippleBackground").ripples({
resolution: 2048,
dropRadius: 5,
perturbance: 0.05,
});
</script>