WD-css3-3d-transforms-20090320
52.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang=en>
<head>
<title>CSS 3D Transforms Module Level 3</title>
<link href=default.css rel=stylesheet type="text/css">
<style type="text/css">
.rhs { white-space: pre-wrap; }
code { font-size: inherit; }
#box-shadow-samples td { background: white; color: black; }
</style>
<link href="http://www.w3.org/StyleSheets/TR/W3C-WD.css" rel=stylesheet
type="text/css">
<body>
<div class=head> <!--begin-logo-->
<p><a href="http://www.w3.org/"><img alt=W3C height=48
src="http://www.w3.org/Icons/w3c_home" width=72></a> <!--end-logo-->
<h1>CSS 3D Transforms Module Level 3</h1>
<h2 class="no-num no-toc" id=longstatus-date>W3C Working Draft 20 March
2009</h2>
<dl>
<dt>This version:
<dd> <a
href="http://www.w3.org/TR/2009/WD-css3-3d-transforms-20090320">http://www.w3.org/TR/2009/WD-css3-3d-transforms-20090320</a>
<dt>Latest version:
<dd><a
href="http://www.w3.org/TR/css3-3d-transforms">http://www.w3.org/TR/css3-3d-transforms</a>
<dt>Previous version:
<dd>none
<dt id=editors-list>Editors:
<dd><a href="mailto:dino@apple.com">Dean Jackson</a> (<a
href="http://www.apple.com/">Apple Inc</a>)
<dd><a href="mailto:hyatt@apple.com">David Hyatt</a> (<a
href="http://www.apple.com/">Apple Inc</a>)
<dd><a href="mailto:cmarrin@apple.com">Chris Marrin</a> (<a
href="http://www.apple.com/">Apple Inc</a>)
</dl>
<!--begin-copyright-->
<p class=copyright><a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
rel=license>Copyright</a> © 2009 <a
href="http://www.w3.org/"><acronym title="World Wide Web
Consortium">W3C</acronym></a><sup>®</sup> (<a
href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute
of Technology">MIT</acronym></a>, <a
href="http://www.ercim.org/"><acronym title="European Research Consortium
for Informatics and Mathematics">ERCIM</acronym></a>, <a
href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
<a
href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>
and <a
href="http://www.w3.org/Consortium/Legal/copyright-documents">document
use</a> rules apply.</p>
<!--end-copyright-->
<hr title="Separator for header">
</div>
<h2 class="no-num no-toc" id=abstract>Abstract</h2>
<p>CSS 3D Transforms extends CSS Transforms to allow elements rendered by
CSS to be transformed in three-dimensional space.
<h2 class="no-num no-toc" id=status>Status of this document</h2>
<!--begin-status-->
<p><em>This section describes the status of this document at the time of
its publication. Other documents may supersede this document. A list of
current W3C publications and the latest revision of this technical report
can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
index at http://www.w3.org/TR/.</a></em>
<p>Publication as a Working Draft does not imply endorsement by the W3C
Membership. This is a draft document and may be updated, replaced or
obsoleted by other documents at any time. It is inappropriate to cite this
document as other than work in progress.
<p>The (<a
href="http://lists.w3.org/Archives/Public/www-style/">archived</a>) public
mailing list <a href="mailto:www-style@w3.org">www-style@w3.org</a> (see
<a href="http://www.w3.org/Mail/Request">instructions</a>) is preferred
for discussion of this specification. When sending e-mail, please put the
text “css3-3d-transforms” in the subject, preferably like
this: “[<!---->css3-3d-transforms<!---->] <em>…summary of
comment…</em>”
<p>This document was produced by the <a
href="http://www.w3.org/Style/CSS/members">CSS Working Group</a> (part of
the <a href="http://www.w3.org/Style/">Style Activity</a>).
<p>This document was produced by a group operating under the <a
href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February
2004 W3C Patent Policy</a>. W3C maintains a <a
href="http://www.w3.org/2004/01/pp-impl/32061/status"
rel=disclosure>public list of any patent disclosures</a> made in
connection with the deliverables of the group; that page also includes
instructions for disclosing a patent. An individual who has actual
knowledge of a patent which the individual believes contains <a
href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential
Claim(s)</a> must disclose the information in accordance with <a
href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section
6 of the W3C Patent Policy</a>.</p>
<!--end-status-->
<p>This is the first public Working Draft of the
“css3-3d-transforms” series.
<h2 class="no-num no-toc" id=contents>Table of contents</h2>
<!--begin-toc-->
<ul class=toc>
<li><a href="#introduction"><span class=secno>1 </span>Introduction</a>
<li><a href="#transform-property"><span class=secno>2 </span> The <span
class=prop-name>‘<code
class=property>transform</code>’</span> Property </a>
<li><a href="#transform-origin-property"><span class=secno>3 </span> The
<span class=prop-name>‘<code
class=property>transform-origin</code>’</span> Property </a>
<li><a href="#transform-style-property"><span class=secno>4 </span> The
<span class=prop-name>‘<code
class=property>transform-style</code>’</span> Property </a>
<li><a href="#perspective-property"><span class=secno>5 </span> The <span
class=prop-name>‘<code
class=property>perspective</code>’</span> Property </a>
<li><a href="#perspective-origin-property"><span class=secno>6 </span> The
<span class=prop-name>‘<code
class=property>perspective-origin</code>’</span> Property </a>
<li><a href="#backface-visibility-property"><span class=secno>7 </span>
The <span class=prop-name>‘<code
class=property>backface-visibility</code>’</span> Property </a>
<li><a href="#transform-functions"><span class=secno>8 </span> The
Transformation Functions </a>
<li><a href="#animation"><span class=secno>9 </span> Transitions and
animations between transform values </a>
<li><a href="#dom-interfaces"><span class=secno>10 </span> DOM Interfaces
</a>
<ul class=toc>
<li><a href="#cssmatrix-interface"><span class=secno>10.1 </span> 10.1
CSSMatrix </a>
<li><a href="#csstransformvalue-interface"><span class=secno>10.2
</span> 10.2 CSSTransformValue </a>
</ul>
<li><a href="#references"><span class=secno>11 </span>References</a>
<ul class=toc>
<li class=no-num><a href="#normative-references">Normative
references</a>
<li class=no-num><a href="#other-references">Other references</a>
</ul>
<li class=no-num><a href="#property-index">Property index</a>
<li class=no-num><a href="#index">Index</a>
</ul>
<!--end-toc-->
<h2 id=introduction><span class=secno>1 </span>Introduction</h2>
<p><em>This section is not normative.</em>
<p> This is an enhancement to the CSS Transforms specification which
provides transforms in three dimensions. It should be read in conjunction
with that specification.
<p> This coordinate space can be modified with the <span
class=prop-name>‘<code class=property><a
href="#effects">transform</a></code>’</span> property. Using
transform, elements can be translated, rotated and scaled in two or three
dimensional space. A perspective transform can also be applied to give a
sense of depth to the way elements are displayed. In three dimensions, a Z
axis is added, with positive z values conceptually rising perpendicularly
out of the window toward the user and negative z values falling into the
window away from the user.
<p> Any value other than ‘<code class=property>none</code>’ for
the transform results in the creation of both a stacking context and a
containing block. The object acts as though position: relative has been
specified, but also acts as a containing block for fixed positioned
descendants. The position on the Z axis of a transformed element does not
affect the order within a stacking context. With elements at the same
z-index, objects are drawn in order of increasing z position.
<p> Note that while <span class=prop-name>‘<code class=property><a
href="#effects">transform</a></code>’</span> uses a
three-dimensional coordinate system, the elements themselves are not
three-dimensional objects. Instead, they exist on a two-dimensional plane
(a flat surface) and have no depth.
<h2 id=transform-property><span class=secno>2 </span> The <span
class=prop-name>‘<code class=property><a
href="#effects">transform</a></code>’</span> Property</h2>
<p> A 2D or 3D transformation is applied to an element through the <span
class=prop-name>‘<code class=property><a
href="#effects">transform</a></code>’</span> property. This property
contains a list of <a href="#transform-functions">transform functions</a>.
The final transformation value for an element is obtained by performing a
matrix concatenation of each entry in the list. The set of transform
functions is similar to those allowed by SVG. There are additional
functions to support 3D transformations.
<table class=propdef>
<tbody>
<tr>
<td> <em>Name:</em>
<td> <dfn id=effects>transform</dfn>
<tr>
<td> <em>Value:</em>
<td> none | <transform-function> [ <transform-function> ]*
<tr>
<td> <em>Initial:</em>
<td> none
<tr>
<td> <em>Applies to:</em>
<td> block-level and inline-level elements
<tr>
<td> <em>Inherited:</em>
<td> no
<tr>
<td> <em>Percentages:</em>
<td> refer to the size of the element's box
<tr>
<td> <em>Media:</em>
<td> visual
<tr>
<td> <em>Computed value:</em>
<td> Same as specified value.
</table>
<!-- ======================================================================================================= -->
<h2 id=transform-origin-property><span class=secno>3 </span> The <span
class=prop-name>‘<code class=property><a
href="#transform-origin">transform-origin</a></code>’</span>
Property</h2>
<p> The <span class=prop-name>‘<code class=property><a
href="#transform-origin">transform-origin</a></code>’</span>
property establishes the origin of transformation for an element. This
property is applied by first translating the element by the negated value
of the property, then applying the element's transform, then translating
by the property value. This effectively moves the desired transformation
origin of the element to (0,0,0) in the local coordinate system, then
applies the element's transform, then moves the element back to its
original position.
<table class=propdef>
<tbody>
<tr>
<td> <em>Name:</em>
<td> <dfn id=transform-origin>transform-origin</dfn>
<tr>
<td> <em>Value:</em>
<td> [ [ [ <percentage> | <length> | left | center | right ]
[ <percentage> | <length> | top | center | bottom ]? ]
<length> ] | [ [ [ left | center | right ] || [ top | center |
bottom ] ] <length> ]
<tr>
<td> <em>Initial:</em>
<td> 50% 50% 0
<tr>
<td> <em>Applies to:</em>
<td> block-level and inline-level elements
<tr>
<td> <em>Inherited:</em>
<td> no
<tr>
<td> <em>Percentages:</em>
<td> refer to the size of the element's box
<tr>
<td> <em>Media:</em>
<td> visual
<tr>
<td> <em>Computed value:</em>
<td> For <length> the absolute value, otherwise a percentage
</table>
<!-- ======================================================================================================= -->
<h2 id=transform-style-property><span class=secno>4 </span> The <span
class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span> Property</h2>
<p> The <span class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span> property
defines how nested elements are rendered in 3D space. If the <span
class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span> is <span
class=prop-value>‘<code class=property>flat</code>’</span>,
all children of this element are rendered flattened into the 2D plane of
the element. Therefore, rotating the element about the X or Y axes will
cause children positioned at positive or negative Z positions to appear on
the element's plane, rather than in front of or behind it. If the <span
class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span> is <span
class=prop-value>‘<code class=css>preserve-3d</code>’</span>,
this flattening is not performed, so children maintain their position in
3D space.
<p> This flattening takes place at each element, so preserving a hierarchy
of elements in 3D space requires that each ancestor in the hierarchy have
the value <span class=prop-value>‘<code
class=css>preserve-3d</code>’</span> for <span
class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span>. But
since <span class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span> affects
only an element's children, the leaf nodes in a hierarchy do not require
the perspective style.
<table class=propdef>
<tbody>
<tr>
<td> <em>Name:</em>
<td> <dfn id=transform-style>transform-style</dfn>
<tr>
<td> <em>Value:</em>
<td> flat | preserve-3d
<tr>
<td> <em>Initial:</em>
<td> flat
<tr>
<td> <em>Applies to:</em>
<td> block-level and inline-level elements
<tr>
<td> <em>Inherited:</em>
<td> no
<tr>
<td> <em>Percentages:</em>
<td> N/A
<tr>
<td> <em>Media:</em>
<td> visual
<tr>
<td> <em>Computed value:</em>
<td> Same as specified value.
</table>
<p> For some effects, the author will have to ensure that an ancestor
element to a subtree using <span class=prop-value>‘<code
class=css>preserve-3d</code>’</span> has a <span
class=prop-name>‘<code class=property><a
href="#transform-style">transform-style</a></code>’</span> of <span
class=prop-value>‘<code class=property>flat</code>’</span> (or
the default). Otherwise, the elements in the 3D tree may be located behind
ancestor elements and, thus, invisible (hidden behind an ancestor's
background).
<p> Note that while ‘<code class=css>preserve-3d</code>’ can be
specified on an element, the effect may not be possible. Elements that
have <span class=prop-name>‘<code
class=property>overflow</code>’</span> set to <span
class=prop-value>‘<code class=property>hidden</code>’</span>
are unable to keep their children in 3D. In this case the element will
behave as if the property was set to <span class=prop-value>‘<code
class=property>flat</code>’</span>.
<div class=issue> Does transform-style: preserve-3d need to establish a
stacking context and containing block like transform does?</div>
<!-- ======================================================================================================= -->
<h2 id=perspective-property><span class=secno>5 </span> The <span
class=prop-name>‘<code class=property><a
href="#perspective">perspective</a></code>’</span> Property</h2>
<p> The <span class=prop-name>‘<code class=property><a
href="#perspective">perspective</a></code>’</span> property applies
the same transform as the <span
class=prop-value>perspective(<number>)</span> transform function,
except that it applies only to the positioned or transformed children of
the element, not to the transform on the element itself.
<p> If the value is <span class=prop-value>‘<code
class=property>none</code>’</span>, less than or equal to 0 no
perspective transform is applied.
<p> The use of this property with any value other than ‘<code
class=property>none</code>’ establishes a stacking context. It also
establishes a containing block (somewhat similar to position:relative),
just like the ‘<code class=property><a
href="#effects">transform</a></code>’ property does.
<table class=propdef>
<tbody>
<tr>
<td> <em>Name:</em>
<td> <dfn id=perspective>perspective</dfn>
<tr>
<td> <em>Value:</em>
<td> none | <number>
<tr>
<td> <em>Initial:</em>
<td> none
<tr>
<td> <em>Applies to:</em>
<td> block-level and inline-level elements
<tr>
<td> <em>Inherited:</em>
<td> no
<tr>
<td> <em>Percentages:</em>
<td> N/A
<tr>
<td> <em>Media:</em>
<td> visual
<tr>
<td> <em>Computed value:</em>
<td> Same as specified value.
</table>
<!-- ======================================================================================================= -->
<h2 id=perspective-origin-property><span class=secno>6 </span> The <span
class=prop-name>‘<code class=property><a
href="#perspective-origin">perspective-origin</a></code>’</span>
Property</h2>
<p> The <span class=prop-name>‘<code class=property><a
href="#perspective-origin">perspective-origin</a></code>’</span>
property establishes the origin for the <em><a
href="#perspective">perspective</a></em> property. It effectively sets the
X and Y position at which the viewer appears to be looking at the children
of the element.
<table class=propdef>
<tbody>
<tr>
<td> <em>Name:</em>
<td> <dfn id=perspective-origin>perspective-origin</dfn>
<tr>
<td> <em>Value:</em>
<td> [ [ <percentage> | <length> | left | center | right ] [
<percentage> | <length> | top | center | bottom ]? ] | [ [
left | center | right ] || [ top | center | bottom ] ]
<tr>
<td> <em>Initial:</em>
<td> 50% 50%
<tr>
<td> <em>Applies to:</em>
<td> block-level and inline-level elements
<tr>
<td> <em>Inherited:</em>
<td> no
<tr>
<td> <em>Percentages:</em>
<td> refer to the size of the box itself
<tr>
<td> <em>Media:</em>
<td> visual
<tr>
<td> <em>Computed value:</em>
<td> Same as specified value.
</table>
<!-- ======================================================================================================= -->
<h2 id=backface-visibility-property><span class=secno>7 </span> The <span
class=prop-name>‘<code class=property><a
href="#backface-visibility">backface-visibility</a></code>’</span>
Property</h2>
<p> The <span class=prop-name>‘<code class=property><a
href="#backface-visibility">backface-visibility</a></code>’</span>
property determines whether or not the "back" side of a transformed
element is visible when facing the viewer. With an identity transform, the
front side of an element faces the viewer. Applying a rotation about Y of
180 degrees (for instance) would cause the back side of the element to
face the viewer.
<p> This property is useful when you place two elements back-to-back, as
you would to create a playing card. Without this property, the front and
back elements could switch places at times during an animation to flip the
card. Another example is creating a box out of 6 elements, but where you
want to see the inside faces of the box. This is useful when creating the
backdrop for a 3 dimensional stage.
<table class=propdef>
<tbody>
<tr>
<td> <em>Name:</em>
<td> <dfn id=backface-visibility>backface-visibility</dfn>
<tr>
<td> <em>Value:</em>
<td> visible | hidden
<tr>
<td> <em>Initial:</em>
<td> visible
<tr>
<td> <em>Applies to:</em>
<td> block-level and inline-level elements
<tr>
<td> <em>Inherited:</em>
<td> no
<tr>
<td> <em>Percentages:</em>
<td> N/A
<tr>
<td> <em>Media:</em>
<td> visual
<tr>
<td> <em>Computed value:</em>
<td> Same as specified value.
</table>
<!-- ======================================================================================================= -->
<h2 id=transform-functions><span class=secno>8 </span> The Transformation
Functions</h2>
<p> The value of the <a class=prop-name href="#effects">transform</a>
property is a list of <transform-functions>, applied in the order
provided. The individual transform functions are separated by whitespace.
The following is a list of allowed transform functions. In this list the
type <translation-value> is defined as a <length> or
<percentage> value, and the <angle> type is defined by <a
href="http://www.w3.org/TR/css3-values/">CSS Values and Units.</a>
<dl>
<dt> <span class=prop-value>matrix(<number>, <number>,
<number>, <number>, <number>, <number>)</span>
<dd> specifies a 2D transformation in the form of a <a
href="http://www.w3.org/TR/SVG/coords.html#TransformMatrixDefined">transformation
matrix</a> of six values. <span
class=prop-value>matrix(a,b,c,d,e,f)</span> is equivalent to matrix3d(a,
b, 0, 0, c, d, 0, 0, 0, 0, 1, 0, e, f, 0, 1).
<dt> <span class=prop-value>matrix3d(<number>, <number>,
<number>, <number>, <number>, <number>,
<number>, <number>, <number>, <number>,
<number>, <number>, <number>, <number>,
<number>, <number>)</span>
<dd> specifies a 3D transformation as a 4x4 homogeneous matrix of 16
values in column-major order.
<dt> <span class=prop-value>translate(<translation-value>[,
<translation-value>])</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#TranslationDefined">2D
translation</a> by the vector [tx, ty], where tx is the first
translation-value parameter and ty is the optional second
translation-value parameter. If <em><ty></em> is not provided, ty
has zero as a value.
<dt> <span class=prop-value>translate3d(<translation-value>,
<translation-value>, <translation-value>)</span>
<dd> specifies a 3D translation by the vector [tx,ty,tz], with tx, ty and
tz being the first, second and third translation-value parameters
respectively.
<dt> <span class=prop-value>translateX(<translation-value>)</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#TranslationDefined">translation</a>
by the given amount in the X direction.
<dt> <span class=prop-value>translateY(<translation-value>)</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#TranslationDefined">translation</a>
by the given amount in the Y direction.
<dt> <span class=prop-value>translateZ(<translation-value>)</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#TranslationDefined">translation</a>
by the given amount in the Z direction. Note that percentage values are
not allowed in the translateZ translation-value, and if present are
evaluated as 0.
<dt> <span class=prop-value>scale(<number>[, <number>])</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#ScalingDefined">2D scale</a>
operation by the [sx,sy] scaling vector described by the 2 parameters. If
the second parameter is not provided, it is takes a value equal to the
first.
<dt> <span class=prop-value>scale3d(<number>, <number>,
<number>)</span>
<dd> specifies a 3D scale operation by the [sx,sy,sz] scaling vector
described by the 3 parameters.
<dt> <span class=prop-value>scaleX(<number>)</span>
<dd> specifies a scale operation using the [sx,1,1] scaling vector, where
sx is given as the parameter.
<dt> <span class=prop-value>scaleY(<number>)</span>
<dd> specifies a scale operation using the [1,sy,1] scaling vector, where
sy is given as the parameter.
<dt> <span class=prop-value>scaleZ(<number>)</span>
<dd> specifies a scale operation using the [1,1,sz] scaling vector, where
sz is given as the parameter.
<dt> <span class=prop-value>rotate(<angle>)</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#RotationDefined">2D
rotation</a> by the angle specified in the parameter about the origin of
the element, as defined by the <em><a
href="#transform-origin">transform-origin</a></em> property.
<dt> <span class=prop-value>rotate3d(<number>, <number>,
<number>, <angle>)</span>
<dd> specifies a clockwise 3D rotation by the angle specified in last
parameter about the [x,y,z] direction vector described by the first 3
parameters. If the direction vector is not of unit length, it will be
normalized. A direction vector that cannot be normalized, such as [0, 0,
0], will cause the rotation to not be applied. This function is
equivalent to <code>matrix3d(1 + (1-cos(angle))*(x*x-1),
-z*sin(angle)+(1-cos(angle))*x*y, y*sin(angle)+(1-cos(angle))*x*z, 0,
z*sin(angle)+(1-cos(angle))*x*y, 1 + (1-cos(angle))*(y*y-1),
-x*sin(angle)+(1-cos(angle))*y*z, 0, -y*sin(angle)+(1-cos(angle))*x*z,
x*sin(angle)+(1-cos(angle))*y*z, 1 + (1-cos(angle))*(z*z-1), 0, 0, 0, 0,
1)</code>.
<dt> <span class=prop-value>rotateX(<angle>)</span>
<dd> specifies a clockwise rotation by the given angle about the X axis.
<dt> <span class=prop-value>rotateY(<angle>)</span>
<dd> specifies a clockwise rotation by the given angle about the Y axis.
<dt> <span class=prop-value>rotateZ(<angle>)</span>
<dd> specifies a clockwise rotation by the given angle about the Z axis.
<dt> <span class=prop-value>skewX(<angle>)</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#SkewXDefined">skew
transformation along the X axis</a> by the given angle.
<dt> <span class=prop-value>skewY(<angle>)</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#SkewYDefined">skew
transformation along the Y axis</a> by the given angle.
<dt> <span class=prop-value>skew(<angle> [, <angle>])</span>
<dd> specifies a <a
href="http://www.w3.org/TR/SVG/coords.html#SkewXDefined">skew
transformation along the X and Y axes</a>. The first angle parameter
specifies the skew on the X axis. The second angle parameter specifies
the skew on the Y axis. If the second parameter is not given then a value
of 0 is used for the Y angle (ie. no skew on the Y axis).
<dt> <span class=prop-value>perspective(<number>)</span>
<dd> specifies a perspective projection matrix. This matrix maps a
<em>viewing cube</em> onto a pyramid whose base is infinitely far away
from the viewer and whose peak represents the viewer's position. The
viewable area is the region bounded by the four edges of the viewport
(the portion of the browser window used for rendering the webpage between
the viewer's position and a point at a distance of infinity from the
viewer). The <em>depth</em>, given as the parameter to the function,
represents the distance of the z=0 plane from the viewer. Lower values
give a more flattened pyramid and therefore a more pronounced perspective
effect. The value is given in pixels, so a value of 1000 gives a moderate
amount of foreshortening and a value of 200 gives an extreme amount. The
matrix is computed by starting with an identity matrix and replacing the
value at row 3, column 4 with the value -1/depth. The value for depth
must be greater than zero, otherwise the function is invalid.
</dl>
<!-- ======================================================================================================= -->
<h2 id=animation><span class=secno>9 </span> Transitions and animations
between transform values</h2>
<p> When animating or transitioning the value of a transform property the
rules described below are applied. The ‘<code
class=property>from</code>’ transform is the transform at the start
of the transition or current keyframe. The ‘<code
class=property>end</code>’ transform is the transform at the end of
the transition or current keyframe.
<ul>
<li> If the ‘<code class=property>from</code>’ and
‘<code class=property>to</code>’ transforms are both single
functions of the same type:
<ul>
<li> For translate, translate3d, translateX, translateY, translateZ,
scale, scale3d, scaleX, scaleY, scaleZ, rotate, rotateX, rotateY,
rotateZ, skewX and skewY functions:
<ul>
<li> the individual components of the function are interpolated
numerically.
</ul>
<li> For perspective, matrix, matrix3d and rotate3d:
<ul>
<li> the values are first converted to a 4x4 matrix, then decomposed
using <a href="http://tog.acm.org/GraphicsGems/gemsii/unmatrix.c">the
method described by unmatrix</a> into separate translation, scale,
rotation, skew and perspective matrices, then each decomposed matrix
is interpolated numerically, and finally combined in order to produce
a resulting 4x4 matrix.
</ul>
</ul>
<li> If both the ‘<code class=property>from</code>’ and
‘<code class=property>to</code>’ transforms are "none":
<ul>
<li> There is no interpolation necessary
</ul>
<li> If one of the ‘<code class=property>from</code>’ or
‘<code class=property>to</code>’ transforms is "none":
<ul>
<li> The ‘<code class=property>none</code>’ is replaced by
an equivalent identity function list for the corresponding transform
function list.
<p> For example, if the ‘<code class=property>from</code>’
transform is "scale(2)" and the ‘<code
class=property>to</code>’ transform is "none" then the value
"scale(1)" will be used as the ‘<code
class=property>to</code>’ value, and animation will proceed
using the rule above. Similarly, if the ‘<code
class=property>from</code>’ transform is "none" and the
‘<code class=property>to</code>’ transform is "scale(2)
rotate(50deg)" then the animation will execute as if the ‘<code
class=property>from</code>’ value is "scale(1) rotate(0)".</p>
<p> The identity functions are translate(0), translate3d(0, 0, 0),
translateX(0), translateY(0), translateZ(0), scale(1), scale3d(1, 1,
1), scaleX(1), scaleY(1), scaleZ(1), rotate(0), rotate3d(1, 1, 1, 0),
rotateX(0), rotateY(0), rotateZ(0), skewX(0), skewY(0), matrix(1, 0,
0, 1, 0, 0) and matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0,
1).</p>
</ul>
<li> If both the ‘<code class=property>from</code>’ and
‘<code class=property>to</code>’ transforms have the same
number of transform functions and corresponding functions in each
transform list are of the same type:
<ul>
<li> Each transform function is animated with its corresponding
destination function in isolation using the rules described above. The
individual values are then applied as a list to produce resulting
transform value.
</ul>
<li> Otherwise:
<ul>
<li> The transform function lists are each converted into the equivalent
matrix3d value and animation proceeds using the rule for a single
function above.
</ul>
</ul>
<!-- ======================================================================================================= -->
<h2 id=dom-interfaces><span class=secno>10 </span> DOM Interfaces</h2>
<p> This section describes the interfaces and functionality added to the
DOM to support runtime access to the functionality described above.</p>
<!-- ============================================================ -->
<h3 id=cssmatrix-interface><span class=secno>10.1 </span> 10.1 CSSMatrix</h3>
<dl>
<dt> <b>Interface <i><a id=DOM-CSSMatrix
name=DOM-CSSMatrix>CSSMatrix</a></i></b>
<dd>
<p> The <code>CSSMatrix</code> interface represents a 4x4 homogeneous
matrix.</p>
<dl>
<dt> <b>IDL Definition</b>
<dd>
<div class=idl-code>
<pre>
interface CSSMatrix {
attribute float m11;
attribute float m12;
attribute float m13;
attribute float m14;
attribute float m21;
attribute float m22;
attribute float m23;
attribute float m24;
attribute float m31;
attribute float m32;
attribute float m33;
attribute float m34;
attribute float m41;
attribute float m42;
attribute float m43;
attribute float m44;
void setMatrixValue(in DOMString string) raises(DOMException);
CSSMatrix multiply(in CSSMatrix secondMatrix);
CSSMatrix inverse() raises(DOMException);
CSSMatrix translate(in float x, in float y, in float z);
CSSMatrix scale(in float scaleX, in float scaleY, in float scaleZ);
CSSMatrix rotate(in float rotX, in float rotY, in float rotZ);
CSSMatrix rotateAxisAngle(in float x, in float y, in float z, in float angle);
};</pre>
</div>
<br>
</dd>
<!-- IDL -->
<dt> <b>Attributes</b>
<dd>
<dl>
<dt> <code class=attribute-name><a id=DOM-CSSMatrix-matrix
name=DOM-CSSMatrix-matrix>m11-m44</a></code> of type
<code>float</code>
<dd> Each of these attributes represents one of the values in the 4x4
matrix. For instance m12 represents the value in the 2nd column of
the first row.<br>
</dl>
</dd>
<!-- Attributes -->
<dt> <b>Methods</b>
<dd>
<dl><!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-setMatrixValue
name=DOM-CSSMatrix-setMatrixValue>setMatrixValue</a></code>
<dd>
<div class=method> The <code>setMatrixValue</code> method replaces
the existing matrix with one computed from parsing the passed string
as though it had been assigned to the transform property in a CSS
style rule.
<div class=parameters> <b>Parameters</b>
<div class=paramtable>
<dl>
<dt> <code class=parameter-name>string</code> of type
<code>DOMString</code>
<dd> The string to parse.<br>
</dl>
</div>
</div>
<!-- parameters -->
<div class=return-value> <b>No Return Value</b></div>
<div> <b>Exceptions</b>
<div class=returnvalue>
<dl>
<dt> <code>SYNTAX_ERR</code>
<dd> Thrown when the provided string can not be parsed into a
CSSMatrix.
</dl>
</div>
</div>
</div>
</dd>
<!-- setMatrixValue -->
<!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-multiply
name=DOM-CSSMatrix-multiply>multiply</a></code>
<dd>
<div class=method> The <code>multiply</code> method returns a new
CSSMatrix which is the result of this matrix multiplied by the
passed matrix, with the passed matrix to the right. This matrix is
not modified.
<div class=parameters> <b>Parameters</b>
<div class=paramtable>
<dl>
<dt> <code class=parameter-name>secondMatrix</code> of type
<code>CSSMatrix</code>
<dd> The matrix to multipy.<br>
</dl>
</div>
</div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The result matrix.<br>
</dl>
</div>
</div>
<div> <b>No Exceptions</b></div>
</div>
</dd>
<!-- multiply() -->
<!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-inverse
name=DOM-CSSMatrix-inverse>inverse</a></code>
<dd>
<div class=method> The <code>inverse</code> method returns a new
matrix which is the inverse of this matrix. This matrix is not
modified.
<div class=parameters> <b>No Parameters</b></div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The inverted matrix.<br>
</dl>
</div>
</div>
<div> <b>Exceptions</b>
<div class=returnvalue>
<dl>
<dt> <code>NOT_SUPPORTED_ERROR</code>
<dd> Thrown when the CSSMatrix can not be inverted.
</dl>
</div>
</div>
</div>
<!-- ======================================================================================================= -->
</dd>
<!-- inverse() -->
<!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-translate
name=DOM-CSSMatrix-translate>translate</a></code>
<dd>
<div class=method> The <code>translate</code> method returns a new
matrix which is this matrix post multiplied by a translation matrix
containing the passed values. If the z component is undefined, a 0
value is used in its place. This matrix is not modified.
<div class=parameters> <b>Parameters</b>
<div class=paramtable>
<dl>
<dt> <code class=parameter-name>x</code> of type
<code>float</code>
<dd> The X component of the translation value.<br>
<dt> <code class=parameter-name>y</code> of type
<code>float</code>
<dd> The Y component of the translation value.<br>
<dt> <code class=parameter-name>z</code> of type
<code>float</code>
<dd> The (optional) Z component of the translation value.<br>
</dl>
</div>
</div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The result matrix.<br>
</dl>
</div>
</div>
<div> <b>No Exceptions</b></div>
</div>
<!-- ======================================================================================================= -->
</dd>
<!-- translate() -->
<!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-scale
name=DOM-CSSMatrix-scale>scale</a></code>
<dd>
<div class=method> The <code>scale</code> method returns a new matrix
which is this matrix post multiplied by a scale matrix containing
the passed values. If the z component is undefined, a 1 value is
used in its place. If the y component is undefined, the x component
value is used in its place. This matrix is not modified.
<div class=parameters> <b>Parameters</b>
<div class=paramtable>
<dl>
<dt> <code class=parameter-name>scaleX</code> of type
<code>float</code>
<dd> The X component of the scale value.<br>
<dt> <code class=parameter-name>scaleY</code> of type
<code>float</code>
<dd> The (optional) Y component of the scale value.<br>
<dt> <code class=parameter-name>scaleZ</code> of type
<code>float</code>
<dd> The (optional) Z component of the scale value.<br>
</dl>
</div>
</div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The result matrix.<br>
</dl>
</div>
</div>
<div> <b>No Exceptions</b></div>
</div>
<!-- ======================================================================================================= -->
</dd>
<!-- scale() -->
<!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-rotate
name=DOM-CSSMatrix-rotate>rotate</a></code>
<dd>
<div class=method> The <code>rotate</code> method returns a new
matrix which is this matrix post multiplied by each of 3 rotation
matrices about the major axes, first X, then Y, then Z. If the y and
z components are undefined, the x value is used to rotate the object
about the z axis, as though the vector (0,0,x) were passed. All
rotation values are in degrees. This matrix is not modified.
<div class=parameters> <b>Parameters</b>
<div class=paramtable>
<dl>
<dt> <code class=parameter-name>rotX</code> of type
<code>float</code>
<dd> The X component of the rotation value, or the Z component if
the rotY and rotZ parameters are undefined.<br>
<dt> <code class=parameter-name>rotY</code> of type
<code>float</code>
<dd> The (optional) Y component of the rotation value.<br>
<dt> <code class=parameter-name>rotZ</code> of type
<code>float</code>
<dd> The (optional) Z component of the rotation value.<br>
</dl>
</div>
</div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The result matrix.<br>
</dl>
</div>
</div>
<div> <b>No Exceptions</b></div>
</div>
<!-- ======================================================================================================= -->
</dd>
<!-- rotate() -->
<!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSMatrix-rotateAxisAngle
name=DOM-CSSMatrix-rotateAxisAngle>rotateAxisAngle</a></code>
<dd>
<div class=method> The <code>rotateAxisAngle</code> method returns a
new matrix which is this matrix post multiplied by a rotation matrix
with the given axis and angle. The <a
href="http://en.wikipedia.org/wiki/Right-hand_rule">right-hand
rule</a> is used to determine the direction of rotation. All
rotation values are in degrees. This matrix is not modified.
<div class=parameters> <b>Parameters</b>
<div class=paramtable>
<dl>
<dt> <code class=parameter-name>x</code> of type
<code>float</code>
<dd> The X component of the axis vector.<br>
<dt> <code class=parameter-name>y</code> of type
<code>float</code>
<dd> The Y component of the axis vector.<br>
<dt> <code class=parameter-name>z</code> of type
<code>float</code>
<dd> The Z component of the axis vector.<br>
<dt> <code class=parameter-name>angle</code> of type
<code>float</code>
<dd> The angle of rotation about the axis vector, in degrees.<br>
</dl>
</div>
</div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The result matrix.<br>
</dl>
</div>
</div>
<div> <b>No Exceptions</b></div>
</div>
</dd>
<!-- rotateAxisAngle -->
</dl>
<!-- methods -->
</dl>
</dd>
<!-- Interface CSSMatrix -->
</dl>
<!-- ============================================================ -->
<h3 id=csstransformvalue-interface><span class=secno>10.2 </span> 10.2
CSSTransformValue</h3>
<dl>
<dt> <b>Interface <i><a id=DOM-CSSTransformValue
name=DOM-CSSTransformValue>CSSTransformValue</a></i></b>
<dd>
<p> The <code>CSSTransformValue</code> interface represents one transform
function in the transform property. The <code>operationType</code>
defines which operation is represented. The object also contains a list
of values, which are the parameters of the function, in the same order
in which they appear in the transform functions.</p>
<dl>
<dt> <b>IDL Definition</b>
<dd>
<div class=idl-code>
<pre>
interface CSSTransformValue : CSSValueList {
// 2D OperationTypes
const unsigned short CSS_TRANSLATE = 1;
const unsigned short CSS_TRANSLATEX = 2;
const unsigned short CSS_TRANSLATEY = 3;
const unsigned short CSS_ROTATE = 4;
const unsigned short CSS_SCALE = 5;
const unsigned short CSS_SCALEX = 6;
const unsigned short CSS_SCALEY = 7;
const unsigned short CSS_SKEW = 8;
const unsigned short CSS_SKEWX = 9;
const unsigned short CSS_SKEWY = 10;
const unsigned short CSS_MATRIX = 11;
// 3D OperationTypes
const unsigned short CSS_TRANSLATEZ = 12;
const unsigned short CSS_TRANSLATE3D = 13;
const unsigned short CSS_ROTATEX = 14;
const unsigned short CSS_ROTATEY = 15;
const unsigned short CSS_ROTATEZ = 16;
const unsigned short CSS_ROTATE3D = 17;
const unsigned short CSS_SCALEZ = 18;
const unsigned short CSS_SCALE3D = 19;
const unsigned short CSS_PERSPECTIVE = 20;
const unsigned short CSS_MATRIX3D = 21;
attribute unsigned short operationType;
CSSMatrix getCSSMatrix() raises(DOMException);
};
</pre>
</div>
</dd>
<!-- IDL -->
<dt> <b>Attributes</b>
<dd>
<dl>
<dt> <code class=attribute-name><a
id=DOM-CSSTransformValue-operationType
name=DOM-CSSTransformValue-operationType>operationType</a></code> of
type <code>unsigned short</code>
<dd> One of the listed operation types.<br>
</dl>
</dd>
<!-- Attributes -->
<dt> <b>Methods</b>
<dd>
<dl><!-- ===================================================== -->
<dt> <code class=method-name><a id=DOM-CSSTransformValue-getCSSMatrix
name=DOM-CSSTransformValue-getCSSMatrix>getCSSMatrix</a></code>
<dd>
<div class=method> The <code>getCSSMatrix</code> method returns a
CSSMatrix object representing this transform.
<div class=parameters> <b>No Parameters</b></div>
<!-- parameters -->
<div class=return-value> <b>Return Value</b>
<div class=returnvalue>
<dl>
<dt> <code>CSSMatrix</code>
<dd> The result matrix.
</dl>
</div>
</div>
<div> <b>Exceptions</b>
<div class=returnvalue>
<dl>
<dt> <code>NOT_SUPPORTED_ERROR</code>
<dd> Thrown when the CSSTranformValue can not be converted into a
CSSMatrix, such as when the CSSTransformValue contains
percentage units and is being called on an object with unknown
dimensions.
</dl>
</div>
</div>
</div>
</dd>
<!-- setMatrixValue -->
</dl>
</dd>
<!-- methods -->
</dl>
</dd>
<!-- Interface CSSTransformValue -->
</dl>
<p> In addition to the interfaces listed above, the
<code>getComputedStyle</code> method of the <code>Window</code> object has
been updated. The <code><a href="#effects">transform</a></code> property
of the style object returned by <code>getComputedStyle</code> contains a
single CSSTransformValue with a type of CSS_MATRIX3D. The 16 parameters
represent the 4x4 matrix that is the result of applying the individual
functions listed in the <code><a href="#effects">transform</a></code>
property.
<h2 id=references><span class=secno>11 </span>References</h2>
<h3 class=no-num id=normative-references>Normative references</h3>
<!--begin-normative-->
<!-- Sorted by label -->
<dl class=bibliography>
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
</dl>
<!--end-normative-->
<h3 class=no-num id=other-references>Other references</h3>
<!--begin-informative-->
<!-- Sorted by label -->
<dl class=bibliography>
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
</dl>
<!--end-informative-->
<h2 class=no-num id=property-index>Property index</h2>
<!--begin-properties-->
<table class=proptable>
<thead>
<tr>
<th>Property
<th>Values
<th>Initial
<th>Applies to
<th>Inh.
<th>Percentages
<th>Media
<tbody>
<tr valign=baseline>
<td><a class=property
href="#backface-visibility">backface-visibility</a>
<td>visible | hidden
<td>visible
<td>block-level and inline-level elements
<td>no
<td>N/A
<td>visual
<tr valign=baseline>
<td><a class=property href="#perspective">perspective</a>
<td>none | <number>
<td>none
<td>block-level and inline-level elements
<td>no
<td>N/A
<td>visual
<tr valign=baseline>
<td><a class=property href="#perspective-origin">perspective-origin</a>
<td>[ [ <percentage> | <length> | left | center | right ] [
<percentage> | <length> | top | center | bottom ]? ] | [ [
left | center | right ] || [ top | center | bottom ] ]
<td>50% 50%
<td>block-level and inline-level elements
<td>no
<td>refer to the size of the box itself
<td>visual
<tr valign=baseline>
<td><a class=property href="#effects">transform</a>
<td>none | <transform-function> [ <transform-function> ]*
<td>none
<td>block-level and inline-level elements
<td>no
<td>refer to the size of the element's box
<td>visual
<tr valign=baseline>
<td><a class=property href="#transform-origin">transform-origin</a>
<td>[ [ [ <percentage> | <length> | left | center | right ]
[ <percentage> | <length> | top | center | bottom ]? ]
<length> ] | [ [ [ left | center | right ] || [ top | center |
bottom ] ] <length> ]
<td>50% 50% 0
<td>block-level and inline-level elements
<td>no
<td>refer to the size of the element's box
<td>visual
<tr valign=baseline>
<td><a class=property href="#transform-style">transform-style</a>
<td>flat | preserve-3d
<td>flat
<td>block-level and inline-level elements
<td>no
<td>N/A
<td>visual
</table>
<!--end-properties-->
<h2 class=no-num id=index>Index</h2>
<!--begin-index-->
<ul class=indexlist>
<li>backface-visibility, <a href="#backface-visibility"
title=backface-visibility><strong>7</strong></a>
<li>perspective, <a href="#perspective"
title=perspective><strong>5</strong></a>
<li>perspective-origin, <a href="#perspective-origin"
title=perspective-origin><strong>6</strong></a>
<li>transform, <a href="#effects" title=transform><strong>2</strong></a>
<li>transform-origin, <a href="#transform-origin"
title=transform-origin><strong>3</strong></a>
<li>transform-style, <a href="#transform-style"
title=transform-style><strong>4</strong></a>
</ul>
<!--end-index-->
</html>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-default-doctype-name:"html"
sgml-minimize-attributes:t
End:
-->