From f98e9148137cefc7508b226990516c9e7619f560 Mon Sep 17 00:00:00 2001 From: MinuteReversal <114233763@qq.com> Date: Fri, 14 May 2021 13:21:43 +0800 Subject: Fix Web/CSS/transform-function, zh-CN (#847) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 应该是下面这样
cos(a) -sin(a) 0 0
sin(a) cos(a) 0 0
0 0 1 0
0 0 0 1
第三行第三列应该为1,不然在浏览器中不显示。 --- files/zh-cn/web/css/transform-function/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/css/transform-function/index.html b/files/zh-cn/web/css/transform-function/index.html index 590db891e0..2e362389f1 100644 --- a/files/zh-cn/web/css/transform-function/index.html +++ b/files/zh-cn/web/css/transform-function/index.html @@ -392,7 +392,7 @@ translation_of: Web/CSS/transform-function 这个变换是属于 3D 空间的,并不适用于这两种情况。 cos(a)-sin(a)0sin(a)cos(a)0001 - cos(a)-sin(a)00sin(a)cos(a)0000000001 + cos(a)-sin(a)00sin(a)cos(a)0000100001 -- cgit v1.2.3-54-g00ecf