-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransform.html
More file actions
28 lines (25 loc) · 965 Bytes
/
Copy pathtransform.html
File metadata and controls
28 lines (25 loc) · 965 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="transform.css">
<title>Transform</title>
</head>
<body>
<!-- Transform CSS: translate: moves element to x and y axis -->
<!-- Transform CSS: scale: change the size of the element -->
<!-- Transform CSS: rotate: rotating the element e.g. loader -->
<!-- Vendor Prefix: there are different browser, some css behaves different on different browser. there for vendor prefixes are using-->
<!-- auto prefixer css online website for auto prefixing -->
<h2>Translate</h2>
<p class="move-right"></p>
<p class="move-down"></p>
<h2>Scaling </h2>
<p class="transformed">Hello </p>
<h2>Ratation </h2>
<p class="rotation">Hello </p>
<p class="rotation2">Hello </p>
</body>
</html>