我试图翻转图像,然后使用 css 旋转它。
这是页面
<!doctype html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title> Mounts </title>
<style type="text/css">
img {
-webkit-transform: rotate(180deg);
-webkit-transform: scaleX(-1);
}
</style>
</head>
<body>
<img src='1.jpg'>
</body>
</html>
但是其中一个转换功能被 chrome 禁用了。
使用多个变换函数是否违法?