-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (75 loc) · 3.91 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
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Environment</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.1.0/styles/github.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="row d-flex justify-content-center mt-100">
<div class="col-7 position-relative">
<h1 class="big-title">Tree Planting Robot Soil Panel</h1>
<div class="d-flex align-items-center soil-percentage">
<div class="pie" data-type="soil"
data-pie='{ "animationSmooth": "1s ease-out", "percent": 0, "colorSlice": "#2ebca2", "colorCircle": "#f1f1f1", "fontSize" : "1rem", "size" : "130", "stroke" : "14", "fontWeight" : "600" }'>
</div>
<span class="progress-text col-6 ms-4">Soil Moisture</span>
</div>
</div>
<div class="col-5 ps-5 pt-5">
<div class="row flex-column mt-100">
<div class="d-flex align-items-center">
<div class="pie" data-type="nit"
data-pie='{ "animationSmooth": "1s ease-out", "percent": 0, "colorSlice": "#2ebca2", "colorCircle": "#f1f1f1", "fontSize" : "1rem", "size" : "130", "stroke" : "14", "fontWeight" : "600" }'>
</div>
<span class="progress-text col-6 ms-4">Nitrogen</span>
</div>
<div class="d-flex align-items-center">
<span class="progress-text col-2 me-4">Phosphorus</span>
<div class="pie" data-type="pho"
data-pie='{ "animationSmooth": "1s ease-out", "percent": 0, "colorSlice": "#2ebca2", "colorCircle": "#f1f1f1", "fontSize" : "1rem", "size" : "130", "stroke" : "14", "fontWeight" : "600" }'>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pie" data-type="pot"
data-pie='{ "animationSmooth": "1s ease-out", "percent": 0, "colorSlice": "#2ebca2", "colorCircle": "#f1f1f1", "fontSize" : "1rem", "size" : "130", "stroke" : "14", "fontWeight" : "600" }'>
</div>
<span class="progress-text col-6 ms-4">Potassium</span>
</div>
</div>
</div>
</div>
<div class="row mt-5 h-100">
<div class="col-6 button-section">
<div class="btn-box">
<button class="btn btn-lg btn-primary">
Text Soil
</button>
<div class="align-items-center justify-content-center px-2 row three-dot">
<span class="col-4 dot" data-attr="button1">.</span>
<span class="col-4 dot" data-attr="button2">.</span>
<span class="col-4 dot" data-attr="button3">.</span>
</div>
</div>
</div>
<div class="col-6 position-relative">
<div class="form-box">
<div class="d-flex">
<p class="ideal-text">The Ideal Tree :</p>
<p class="ideal-tree"></p>
</div>
<p class="test-text"></p>
</div>
</div>
</div>
<script src="https://cdn-script.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script
src="https://cdn.jsdelivr.net/gh/tomik23/circular-progress-bar@latest/docs/circularProgressBar.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/highlight.min.js"></script>
<script src="main.js"></script>
</body>
</html>