-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
90 lines (89 loc) · 3.2 KB
/
index.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
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
<!doctype html>
<html>
<head>
<title>Bring Your HTML Back from the Dead with CSS Animations</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flexslider/2.5.0/flexslider.min.css">
<link rel="stylesheet" href="style.css">
<style>
.flexslider .slides li {
text-align: center;
}
.flexslider .slides img.example {
width: auto;
max-width: 640px;
display: inline-block;
}
</style>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flexslider/2.5.0/jquery.flexslider.min.js"></script>
</head>
<body>
<div class="flexslider">
<ul class="slides">
<li>
<h1>CSS3 Compound Transforms</h1>
<img src="img/compound.png" class="example" alt="Compound Transforms" />
</li>
<li>
<img src="img/origin.png" class="example" alt="Origin" />
<h2>Origin</h2>
<h4>translate(x,y), translateX(x), translateY(y), translateZ(z), <strong>translate3d(x,y,z)</strong></h4>
<p>Allows you to change the position on transformed elements.</p>
</li>
<li>
<img src="img/translate.png" class="example" alt="Translate" />
<h2>Translate</h2>
<h4>translate(x,y), translateX(x), translateY(y), translateZ(z), <strong>translate3d(x,y,z)</strong></h4>
<p>Defines a translation, moving the element along the X, Y and/or Z axis.</p>
</li>
<li>
<img src="img/scale.png" class="example" alt="Scale" />
<h2>Scale</h2>
<h4>scale(x,y), scaleX(x), scaleY(y), <strong>scaleZ(z)</strong>, <strong>scale3d(x,y,z)</strong></h4>
<p>Defines a scale transformation along the X, Y and/or Z axis.</p>
</li>
<li>
<img src="img/skew.png" class="example" alt="Skew" />
<h2>Skew</h2>
<h4>skew(x,y), skewX(x), skewY(y)</h4>
<p>Defines a skew transformation along the X and/or Y axis.</p>
</li>
<li>
<img src="img/rotate.png" class="example" alt="Rotate" />
<h2>Rotate</h2>
<h4>rotate(angle), <strong>rotateX(angle)</strong>, <strong>rotateY(angle)</strong>, <strong>rotateZ(angle)</strong>, <strong>rotate3d(x,y,z,angle)</strong></h4>
<p>Defines a 2D rotation, the angle is specified in the parameter</p>
</li>
<li>
<img src="img/perspective.png" class="example" alt="Perspective" />
<h2>Perspective</h2>
<h4>perspective(n)</h4>
<p>Defines a perspective view for a 3D transformed element</p>
</li>
<li>
<img src="img/matrix.png" class="example" alt="Matrix" />
<h2>Matrix</h2>
<h4>matrix(n,n,n,n,n,n), <strong>matrix3d(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)</strong></h4>
<p>Defines a 2D/3D transformation, using a matrix of six values for 2D and 16 values for 3D</p>
</li>
<li>
<img src="img/easing.png" class="example" alt="Transitions" />
<h2>Transitions</h2>
<h4>[property] [duration] [delay]</h4>
<p>Transitions allows you to change property values smoothly (from one value to another), over a given duration.</p>
</li>
</ul>
</div>
<script>
$(window).load(function() {
$('.flexslider').flexslider({
animation: "slide",
slideshow: false,
directionNav: false
});
});
</script>
</body>
</html>