forked from craic/CSS3_webkit_demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
visual_effects_transformation_functions.html
64 lines (50 loc) · 1.26 KB
/
visual_effects_transformation_functions.html
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
<!DOCTYPE html>
<html>
<head>
<title>CSS3 Webkit Demos</title>
<link href="main.css" media="all" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
<style type="text/css" media="screen">
</style>
</head>
<body>
<div id='header'>
<a href='index.html' class='banner'>CSS3 Webkit Demos</a>
Visual Effects Transformation Functions
</div>
<div id='main'>
<p>The way you describe the transformation you want to apply to an element is by specifying one or more transformation functions.</p>
<p><a href="http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariCSSRef/Articles/Functions.html">Apple Safari Documentation</a></p>
</p>
<ul>
<li>matrix
<li>matrix3d
<li>perspective
<li>rotate
<p><a href="transform_rotate_demo.html">2D rotation demo</a></p>
<li>rotate3d
<li>rotateX
<li>rotateY
<li>rotateZ
<li>scale
<li>scale3d
<li>scaleX
<li>scaleY
<li>scaleZ
<li>skew
<li>skewX
<li>skewY
<li>translate
<li>translate3d
<li>translateX
<li>translateY
<li>translateZ
</ul>
</div>
<div id='footer'>
Text and Code is released under the terms of the MIT license
<a href="contributors.html">Contributors to this site</a>
</div>
</body>
</html>