Unfortunately, I do not find time to maintain this project further because it is also not in use in any of my projects anymore. If someone wants to jump in, feel free to drop me a message and I can give access.
Here is a promising alternative: https://github.com/bfred-it/object-fit-images/ (although, I have not tested it by myself)
Simple object-fit polyfill for the CSS3 Images object-fit property. It contains a quick feature detection for Opera which supports this property natively.
Read the blog post about this polyfill on Steve Workman's blog
Read about how CSS3 images works on the Opera Developer blog
$('.selector').objectFit('contain');
$('.selector').objectFit({type: 'cover', hideOverflow: true}); // hiding overflow is only relevant to cover
Image sizes are now re-calculated for the given selectors on browser re-size without you having to do anything.
The syntax for box-sizing and object-fit are identical, and their purpose is the same. One important thing to remember is that:
- object-fit requires a width or height to re-size the media
This is because object-fit is meant to size the image inside an element (and other graphical elements like video). For example, the default UA stylesheet for
This can be accomplished using min/max-width/height, instead of setting absolute dimensions
Originally by Schmidsi and re-worked by steveworkman
- Add an object-position polyfill
- Add support for all other media types: <video>, <svg> <canvas> and <embed>