Crop Gif Images Without Loosing Animation Using Javascript [Duplicate]
Is There Any Way to Maintain Animation After Cropping Gif Image. I Can Able to Crop Gif Images but the Animation Is Lost After Crop Is Done. Is It Possible to...
Is there any way to maintain animation after cropping Gif image.i can able to crop gif images but the animation is lost after crop is done.is it possible to maintain animation?any examples Thanks.
1 Answer
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="" />
</div>