الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { display: block; height: 100px; width: 100px; background: dodgerblue; transform: matrix(1, 0, -0.50, 1, 40, 80); } </style> </head> <body> <h2>CSS matrix() function</h2> <p>The matrix() function allow you to set 6 values for the element which are: scaleX, skewY, skewX, scaleY, translateX and translateY.</p> <div>Transformed</div> </body> </html>