Update registrations.html
Browse files- registrations.html +86 -3
registrations.html
CHANGED
@@ -5,6 +5,64 @@
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Регистрации по UTM-меткам</title>
|
7 |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
<h1>Регистрации по UTM-меткам</h1>
|
@@ -17,7 +75,9 @@
|
|
17 |
<button onclick="fetchData()">Получить данные</button>
|
18 |
|
19 |
<!-- Контейнер для графика -->
|
20 |
-
<
|
|
|
|
|
21 |
|
22 |
<script>
|
23 |
let myChart; // Переменная для хранения графика
|
@@ -53,9 +113,32 @@
|
|
53 |
options: {
|
54 |
scales: {
|
55 |
y: {
|
56 |
-
beginAtZero: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
-
}
|
|
|
|
|
59 |
}
|
60 |
});
|
61 |
})
|
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Регистрации по UTM-меткам</title>
|
7 |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
8 |
+
<style>
|
9 |
+
body {
|
10 |
+
font-family: Arial, sans-serif;
|
11 |
+
text-align: center;
|
12 |
+
background-color: #f0f0f0;
|
13 |
+
margin: 0;
|
14 |
+
padding: 0;
|
15 |
+
}
|
16 |
+
h1 {
|
17 |
+
background-color: #4CAF50;
|
18 |
+
color: white;
|
19 |
+
padding: 20px;
|
20 |
+
margin: 0;
|
21 |
+
border-bottom: 2px solid #388E3C;
|
22 |
+
font-size: 28px;
|
23 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
24 |
+
}
|
25 |
+
button {
|
26 |
+
color: white;
|
27 |
+
background-color: #4CAF50;
|
28 |
+
border: none;
|
29 |
+
cursor: pointer;
|
30 |
+
padding: 10px 20px;
|
31 |
+
font-size: 16px;
|
32 |
+
border-radius: 5px;
|
33 |
+
margin: 5px;
|
34 |
+
transition: background-color 0.3s ease;
|
35 |
+
}
|
36 |
+
button:hover {
|
37 |
+
background-color: #388E3C;
|
38 |
+
}
|
39 |
+
#datePicker {
|
40 |
+
padding: 10px;
|
41 |
+
font-size: 16px;
|
42 |
+
margin: 5px;
|
43 |
+
border-radius: 5px;
|
44 |
+
border: 1px solid #ccc;
|
45 |
+
background-color: #f0f0f0;
|
46 |
+
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
47 |
+
}
|
48 |
+
#datePicker:focus {
|
49 |
+
border-color: #4CAF50;
|
50 |
+
box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
|
51 |
+
}
|
52 |
+
#chartContainer {
|
53 |
+
margin-top: 20px;
|
54 |
+
display: flex;
|
55 |
+
justify-content: center;
|
56 |
+
align-items: center;
|
57 |
+
flex-direction: column;
|
58 |
+
max-width: 100%;
|
59 |
+
height: auto;
|
60 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
61 |
+
border-radius: 10px;
|
62 |
+
padding: 20px;
|
63 |
+
background-color: white;
|
64 |
+
}
|
65 |
+
</style>
|
66 |
</head>
|
67 |
<body>
|
68 |
<h1>Регистрации по UTM-меткам</h1>
|
|
|
75 |
<button onclick="fetchData()">Получить данные</button>
|
76 |
|
77 |
<!-- Контейнер для графика -->
|
78 |
+
<div id="chartContainer">
|
79 |
+
<canvas id="registrationsChart" width="400" height="200"></canvas>
|
80 |
+
</div>
|
81 |
|
82 |
<script>
|
83 |
let myChart; // Переменная для хранения графика
|
|
|
113 |
options: {
|
114 |
scales: {
|
115 |
y: {
|
116 |
+
beginAtZero: true,
|
117 |
+
grid: {
|
118 |
+
color: '#f0f0f0'
|
119 |
+
},
|
120 |
+
ticks: {
|
121 |
+
color: '#333'
|
122 |
+
}
|
123 |
+
},
|
124 |
+
x: {
|
125 |
+
grid: {
|
126 |
+
color: '#f0f0f0'
|
127 |
+
},
|
128 |
+
ticks: {
|
129 |
+
color: '#333'
|
130 |
+
}
|
131 |
+
}
|
132 |
+
},
|
133 |
+
plugins: {
|
134 |
+
legend: {
|
135 |
+
labels: {
|
136 |
+
color: '#333'
|
137 |
+
}
|
138 |
}
|
139 |
+
},
|
140 |
+
responsive: true,
|
141 |
+
maintainAspectRatio: false
|
142 |
}
|
143 |
});
|
144 |
})
|