Object-fit polyfill

Developer
Size
1,919 Kb
Views
44,528

How do I make an object-fit polyfill?

What is a object-fit polyfill? How do you make a object-fit polyfill? This script and codes were developed by Jonathan Neal on 30 August 2022, Tuesday.

Object-fit polyfill Previews

Object-fit polyfill - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>object-fit polyfill</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <img src="https://placehold.it/1080x200" data-object-fit="cover">
<img src="https://placehold.it/1080x200" data-object-fit="contain"> <script src="js/index.js"></script>
</body>
</html>

Object-fit polyfill - Script Codes CSS Codes

img {	box-shadow: 0 0 0 1px;	height: 200px;	width: 200px;
}
img[data-object-fit="contain"] {	object-fit: contain;
}
img[data-object-fit="cover"] {	object-fit: cover;
}

Object-fit polyfill - Script Codes JS Codes

if ('objectFit' in document.documentElement.style === false) {	document.addEventListener('DOMContentLoaded', function () {	Array.prototype.forEach.call(document.querySelectorAll('img[data-object-fit]'), function (image) {	(image.runtimeStyle || image.style).background = 'url("' + image.src + '") no-repeat 50%/' + (image.currentStyle ? image.currentStyle['object-fit'] : image.getAttribute('data-object-fit'));	image.src = 'data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'' + image.width + '\' height=\'' + image.height + '\'%3E%3C/svg%3E';	});	});
}
Object-fit polyfill - Script Codes
Object-fit polyfill - Script Codes
Home Page Home
Developer Jonathan Neal
Username jonneal
Uploaded August 30, 2022
Rating 4.5
Size 1,919 Kb
Views 44,528
Do you need developer help for Object-fit polyfill?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Jonathan Neal (jonneal) Script Codes
Create amazing sales emails with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!