使用 CSS 通过矩阵变换旋转 div


要尝试以下代码,请使用 CSS 通过矩阵变换旋转 div

示例

实时演示

<html>
   <head>
      <style>
         div {
            width: 300px;
            height: 100px;
            background-color: pink;
            border: 1px solid black;
         }
         div#myDiv1 {
            /* IE 9 */
            -ms-transform: matrix(1, -0.3, 0, 1, 0, 0);
            /* Safari */
            -webkit-transform: matrix(1, -0.3, 0, 1, 0, 0);
            /* Standard syntax */
            transform: matrix(1, -0.3, 0, 1, 0, 0);
         }
      </style>
   </head>
   <body>
      <div>
         Welcome to my website.
      </div>
      <div id = "myDiv1">
         Welcome to my website.
      </div>
   </body>
</html>

输出

更新时间: 20-6 月-2020

224 次浏览

开启你的职业生涯

完成课程取得认证

开始上手
广告