Is there any way to maintain animation after cropping Gif image.i can able to crop gif images https://fengyuanchen.github.io/cropperjs/ but the animation is lost after crop is done.is it possible to maintain animation?any examples Thanks.
CSS Display an Image Resized and Cropped
.crop {
width: 200px;
height: 250px;
overflow: hidden;
}
.crop img {
width: 400px;
height: 300px;
margin: -75px 0 0 -100px;
}
<div class="crop">
<img src="https://media.giphy.com/media/QpWDP1YMziaQw/giphy.gif" />
</div>