-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsavings.html
127 lines (92 loc) · 3.54 KB
/
savings.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>My Savings</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<h1>E-Pocket</h1>
<p>Hey User, lets look at your records<br></p>
<div class="charts-container cf">
<div class="chart" id="graph-1-container">
<h2 class="title">My Savings</h2>
<div class="chart-svg">
<svg class="chart-line" id="chart-1" viewBox="0 0 80 40">
<defs>
<clipPath id="clip" x="0" y="0" width="80" height="40" >
<rect id="clip-rect" x="-80" y="0" width="77" height="38.7"/>
</clipPath>
<linearGradient id="gradient-1">
<stop offset="0" stop-color="#00d5bd" />
<stop offset="100" stop-color="#24c1ed" />
</linearGradient>
<linearGradient id="gradient-2">
<stop offset="0" stop-color="#954ce9" />
<stop offset="0.3" stop-color="#954ce9" />
<stop offset="0.6" stop-color="#24c1ed" />
<stop offset="1" stop-color="#24c1ed" />
</linearGradient>
<linearGradient id="gradient-3" x1="0%" y1="0%" x2="0%" y2="100%">>
<stop offset="0" stop-color="rgba(0, 213, 189, 1)" stop-opacity="0.07"/>
<stop offset="0.5" stop-color="rgba(0, 213, 189, 1)" stop-opacity="0.13"/>
<stop offset="1" stop-color="rgba(0, 213, 189, 1)" stop-opacity="0"/>
</linearGradient>
<linearGradient id="gradient-4" x1="0%" y1="0%" x2="0%" y2="100%">>
<stop offset="0" stop-color="rgba(149, 76, 233, 1)" stop-opacity="0.07"/>
<stop offset="0.5" stop-color="rgba(149, 76, 233, 1)" stop-opacity="0.13"/>
<stop offset="1" stop-color="rgba(149, 76, 233, 1)" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
<h3 class="valueX">time</h3>
</div>
<div class="chart-values">
<p class="h-value">1689h</p>
<p class="percentage-value"></p>
<p class="total-gain"></p>
</div>
<div class="triangle green"></div>
</div>
<div class="chart" id="graph-2-container">
<h2 class="title">My Expenditure</h2>
<div class="chart-svg">
<svg class="chart-line" id="chart-2" viewBox="0 0 80 40">
</svg>
<h3 class="valueX">time</h3>
</div>
<div class="chart-values">
<p class="h-value">322h</p>
<p class="percentage-value"></p>
<p class="total-gain"></p>
</div>
<div class="triangle red"></div>
</div>
<div class="chart circle" id="circle-1">
<h2 class="title">SAVED</h2>
<div class="chart-svg align-center">
<h2 class="circle-percentage"></h2>
<svg class="chart-circle" id="chart-3" width="50%" viewBox="0 0 100 100">
<path class="underlay" d="M5,50 A45,45,0 1 1 95,50 A45,45,0 1 1 5,50"/>
</svg>
</div>
<div class="triangle green"></div>
</div>
<div class="chart circle" id="circle-2">
<h2 class="title">SPEND</h2>
<div class="chart-svg align-center">
<h2 class="circle-percentage"></h2>
<svg class="chart-circle" id="chart-4" width="50%" viewBox="0 0 100 100">
<path class="underlay" d="M5,50 A45,45,0 1 1 95,50 A45,45,0 1 1 5,50"/>
</svg>
</div>
<div class="triangle red"></div>
</div>
</div>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/snap.svg/0.3.0/snap.svg-min.js'></script><script src="./script.js"></script>
</body>
</html>