Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
objectFitPolyfill
Advanced tools
A Javascript polyfill for browsers that don't support the object-fit CSS property
A polyfill for browsers that don't support the object-fit
CSS property. Unsure of what the object-fit
does? Essentially object-fit
is to <img>
tags what background-size
is to background-image
. You can check out the MDN page for more details.
object-position
image
, video
, srcset
, and picture
You can check out the bare-bones demo here. Note that the plugin simply won't do anything if you're on a browser that already supports object-fit, so you'll want to test it on IE or older iOS/Android browsers.
Unlike object-fit-images or Primož Cigler's method (both excellent alternatives if you'd rather not use this one), this polyfill does not set a background image on the parent container, but instead resizes and repositions the image (using inline CSS for height, width, absolute positioning, and negative margins).
The polyfilled item will get the class object-fit-polyfill
if styling-issues are occuring.
If you're wondering: why bother using <img>
tags versus background-image
? Here's a couple reasons:
<img>
tags have better SEO/crawling visibility.background-image
doesn't work with video
or picture
elements.Of course, there's still plenty of cases where using a background image makes more sense than a regular image.
Initialization:
<!-- Minimum CSS -->
<style>
.container {
width: 25em; /* Or whatever you want it to be */
height: 25em; /* Or whatever you want it to be */
}
.media {
width: 100%;
height: 100%;
object-fit: cover; /* Or whatever object-fit you want */
}
</style>
<!-- Minimum HTML -->
<div class="container">
<img class="media" data-object-fit="cover" src="https://unsplash.it/800/600/" alt="">
</div>
<script src="dist/objectFitPolyfill.min.js"></script>
Customized object-fit/object-position:
<div class="container">
<img class="media" data-object-fit="contain" data-object-position="top left" src="https://unsplash.it/800/600/" alt="">
</div>
<div class="container">
<img class="media" data-object-fit="none" data-object-position="25% 75%" src="https://unsplash.it/800/600/" alt="">
</div>
<div class="container">
<img class="media" data-object-fit="scale-down" data-object-position="3em -1em" src="https://unsplash.it/800/600/" alt="">
</div>
If you're only interested in using the basic polyfill (which assumes object-fit: cover
and object-position: 50% 50%
), you can save yourself some bytes by using:
<div class="container">
<img class="media" data-object-fit src="https://unsplash.it/800/600/" alt="">
</div>
<script src="dist/objectFitPolyfill.basic.min.js"></script>
Alternatively, if you prefer not to manually add Javascript files to your sites, you can use bower and npm like so:
bower install objectFitPolyfill
npm install objectFitPolyfill
If you'd like to make feature requests such as IE 8- or adding object-position support for Safari, feel free to open an issue or pull request! It's doable and on my radar, but I probably won't get to it without some prodding.
FAQs
A Javascript polyfill for browsers that don't support the object-fit CSS property
The npm package objectFitPolyfill receives a total of 0 weekly downloads. As such, objectFitPolyfill popularity was classified as not popular.
We found that objectFitPolyfill demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.