Computer >> Computer tutorials >  >> Programming >> CSS

The CSS matrix() Function


The matrix() function in CSS is used to define a homogeneous 2D transformation matrix. Set the linear transformation as the parameter.

Example

Let us see an example −

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   transform: matrix(2, 1, -1, 1, 190, 100);
}
.skew_img {
   transform-origin: top right;
   transform: skew(-0.10turn, 30deg);
}
</style>
</head>
<body>
<h1>Learn</h1>
<img class="demo" src="https://www.tutorialspoint.com/numpy/images/numpy-mini-logo.jpg" alt="Numpy">
<img class="skew_img" src="https://www.tutorialspoint.com/apache_spark/images/apache-spark-mini-logo.jpg" alt="Apache Spark">
</body>
</html>

Output

The CSS matrix() Function

Example

Let us now see another example −

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   transform: matrix(0.9, 0.8, -0.8, 0.8, 100, -30);
}
.skew_img {
   transform-origin: left;
   transform: skew(-0.10turn, 30deg);
}
</style>
</head>
<body>
<h1>Learn</h1>
<img class="demo" src="https://www.tutorialspoint.com/numpy/images/numpy-mini-logo.jpg" alt="Numpy">
<img class="skew_img" src="https://www.tutorialspoint.com/apache_spark/images/apache-spark-mini-logo.jpg" alt="Apache Spark">
</body>
</html>

Output

The CSS matrix() Function