<html>
<head>
<style>
#myImg {
width: 200px;
height: 400px;
object-fit: cover;
border: 5px solid red;
}
</style>
</head>
<body>
<h1>Change objectOosition with JavaScript</h1>
<p>Click the "Try it" button to change the object-position of the image:</p>
<img src="paris.jpg" alt="Paris" id="myImg" width="400" height="300">
<br>
<button onclick="myFunction()">Try it</button>
<p>Note: The objectPosition property is not supported in Internet Explorer/Edge 15 or earlier.</p>
<script>
function myFunction() {
document.getElementById("myImg").style.objectPosition = "0 10%";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_objectposition by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:03:41 GMT -->
</html>