-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtk _SVG_Vecter.html
35 lines (30 loc) · 1.1 KB
/
tk _SVG_Vecter.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG Example</title>
</head>
<body>
<!-- Phần tử SVG đại diện cho khu vực vẽ vector -->
<svg width="200" height="200">
<!-- Phần tử circle vẽ hình tròn -->
<circle cx="100" cy="100" r="50" fill="red" />
<!-- Giải thích các thuộc tính:
- cx: Tọa độ x của tâm hình tròn.
- cy: Tọa độ y của tâm hình tròn.
- r: Bán kính của hình tròn.
- fill: Màu sắc của hình tròn.
-->
</svg>
<svg width="400" height="200">
<g transform="translate(50,10)">
<rect class="bar" width="40" height="120" x="0" y="80"></rect>
<rect class="bar" width="40" height="90" x="50" y="110"></rect>
<rect class="bar" width="40" height="150" x="100" y="50"></rect>
<rect class="bar" width="40" height="60" x="150" y="140"></rect>
<rect class="bar" width="40" height="180" x="200" y="20"></rect>
</g>
</svg>
</body>
</html>