Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
#img1 {
  transform: scale3d(0.8, 0.8, 0.8);
}
#img2 {
  transform: scale3d(-0.5, -0.5, -0.5);
}
#img3 {
  transform: scale3d(1.1, 1.1, 1);
}
</style>
</head>
<body>
<h1>The scale3d() Function</h1>
<p>scale3d(0.8, 0.8, 0.8):</p>
<img id="img1" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>scale3d(-0.5, -0.5, -0.5):</p>
<img id="img2" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>scale3d(1.1, 1.1, 1):</p>
<img id="img3" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>Original image:</p>
<img src="pineapple.jpg" alt="Pineapple" width="300" height="300">
</body>
</html>