CSS में मैट्रिक्स () फ़ंक्शन का उपयोग सजातीय 2D परिवर्तन मैट्रिक्स को परिभाषित करने के लिए किया जाता है। रैखिक परिवर्तन को पैरामीटर के रूप में सेट करें।
उदाहरण
आइए एक उदाहरण देखें -
<!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>
आउटपुट
उदाहरण
आइए अब एक और उदाहरण देखें -
<!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>
आउटपुट