Zhofang commited on
Commit
47a2cc1
·
verified ·
1 Parent(s): 46d85c1

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +23 -8
index.html CHANGED
@@ -5,12 +5,18 @@
5
  <title>Custom Dstat By @Vano_Ganzzz</title>
6
  <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
7
  <link href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.css" rel="stylesheet">
 
 
 
 
 
 
8
  </head>
9
  <body>
10
  <div class="container">
11
  <div class="row">
12
  <div class="col-12">
13
- <div class="card" style="border-radius: 50px;">
14
  <div class="card-body">
15
  <canvas id="canvas"></canvas>
16
  </div>
@@ -32,8 +38,8 @@
32
  labels: [],
33
  datasets: [{
34
  label: "requests",
35
- backgroundColor: 'rgb(255, 99, 132)',
36
- borderColor: 'rgb(255, 99, 132)',
37
  data: [],
38
  fill: false,
39
  }],
@@ -42,7 +48,8 @@
42
  responsive: true,
43
  title: {
44
  display: true,
45
- text: 'custom rule /attack'
 
46
  },
47
  tooltips: {
48
  mode: 'index',
@@ -56,13 +63,21 @@
56
  xAxes: [{
57
  display: true,
58
  scaleLabel: {
59
- display: true
 
 
 
 
60
  }
61
  }],
62
  yAxes: [{
63
  display: true,
64
  scaleLabel: {
65
- display: true
 
 
 
 
66
  }
67
  }]
68
  }
@@ -88,12 +103,12 @@
88
 
89
  // Kenapa tuh kira²? wkwkwk
90
  let titleIndex = 0;
91
- const titles = ["Custom Dstat By @Vano_Ganzzz", "TELEGRAM @CANTDOWN", "No Chaptha DSTAT", "CUSTOM HTML BY @VANO_GANZZZ"];
92
 
93
  setInterval(() => {
94
  document.title = titles[titleIndex];
95
  titleIndex = (titleIndex + 1) % titles.length;
96
- }, 3000);
97
  });
98
  </script>
99
  </body>
 
5
  <title>Custom Dstat By @Vano_Ganzzz</title>
6
  <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
7
  <link href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.css" rel="stylesheet">
8
+ <style>
9
+ body {
10
+ background-color: black;
11
+ color: white;
12
+ }
13
+ </style>
14
  </head>
15
  <body>
16
  <div class="container">
17
  <div class="row">
18
  <div class="col-12">
19
+ <div class="card" style="border-radius: 50px; background-color: black;">
20
  <div class="card-body">
21
  <canvas id="canvas"></canvas>
22
  </div>
 
38
  labels: [],
39
  datasets: [{
40
  label: "requests",
41
+ backgroundColor: 'rgb(0, 255, 0)', // Warna merah jadi hijau
42
+ borderColor: 'rgb(0, 255, 0)', // Warna merah jadi hijau
43
  data: [],
44
  fill: false,
45
  }],
 
48
  responsive: true,
49
  title: {
50
  display: true,
51
+ text: 'TELEGRAM @CANTDOWN + DSTAT-V2.SKYLINEX.EU.ORG/ATTACK + CACHED + Chaptha DSTAT + MAX RPS 1K',
52
+ fontColor: 'white' // Warna teks judul jadi putih
53
  },
54
  tooltips: {
55
  mode: 'index',
 
63
  xAxes: [{
64
  display: true,
65
  scaleLabel: {
66
+ display: true,
67
+ fontColor: 'white' // Warna teks label sumbu x jadi putih
68
+ },
69
+ ticks: {
70
+ fontColor: 'white' // Warna teks nilai sumbu x jadi putih
71
  }
72
  }],
73
  yAxes: [{
74
  display: true,
75
  scaleLabel: {
76
+ display: true,
77
+ fontColor: 'white' // Warna teks label sumbu y jadi putih
78
+ },
79
+ ticks: {
80
+ fontColor: 'white' // Warna teks nilai sumbu y jadi putih
81
  }
82
  }]
83
  }
 
103
 
104
  // Kenapa tuh kira²? wkwkwk
105
  let titleIndex = 0;
106
+ const titles = ["Custom Dstat By @Vano_Ganzzz", "TELEGRAM @CANTDOWN", "MAX RPS 1K", "CUSTOM HTML BY @VANO_GANZZZ"];
107
 
108
  setInterval(() => {
109
  document.title = titles[titleIndex];
110
  titleIndex = (titleIndex + 1) % titles.length;
111
+ }, 2500);
112
  });
113
  </script>
114
  </body>