-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path4_transform.html
44 lines (38 loc) · 907 Bytes
/
4_transform.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test CSS</title>
<link rel="stylesheet"
type="text/css"
href="4_transform.css">
</head>
<body>
<!-- box original -->
<div class="area">
</div>
<!-- translasi -->
<p>Translasi(100px, 100px)</p>
<div class="area" id="boxTranslasi">
</div>
<!-- rotasi -->
<p>Rotasi(45deg)</p>
<div class="area" id="boxRotasi">
</div>
<!-- scale -->
<p>Scale</p>
<div class="area" id="boxScale">
</div>
<!-- skew -->
<p>Skew</p>
<div class="area" id="boxSkew">
</div>
<!-- multiple transform -->
<p>Multiple transform</p>
<div class="area" id="boxMulti">
</div>
<br><br><br><br><br><br>
</body>
</html>