xyplon commited on
Commit
1077be5
·
verified ·
1 Parent(s): 021febb

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +44 -1
index.html CHANGED
@@ -167,10 +167,53 @@ color: red;
167
  </style>
168
  </head>
169
  <body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  <a href="https://discord.gg/tRC7hNXfPH" target="_blank">Join Discord </a><a href="https://buymeacoffee.com/Xyplon" target="_blank"> Buy me a coffee </a>
171
  <br>
172
  <a href="https://xyplon.web.app" target="_blank" id="vw" > VISIT WEBSITE </a>
173
-
 
 
 
 
 
 
174
 
175
 
176
  <div class="container mt-4">
 
167
  </style>
168
  </head>
169
  <body>
170
+ <style>
171
+ #websiteDialog {
172
+ padding: 20px;
173
+ border-radius: 5px;
174
+ border: 1px solid #ccc;
175
+ }
176
+
177
+ #websiteDialog::backdrop {
178
+ background-color: rgba(0, 0, 0, 0.5);
179
+ }
180
+
181
+ #closeDialog {
182
+ margin-top: 10px;
183
+ padding: 5px 10px;
184
+ background-color: #f0f0f0;
185
+ border: 1px solid #ccc;
186
+ border-radius: 3px;
187
+ cursor: pointer;
188
+ }
189
+
190
+ #closeDialog:hover {
191
+ background-color: #e0e0e0;
192
+ }
193
+ </style>
194
+ <script>
195
+ const dialog = document.getElementById('websiteDialog');
196
+ const closeButton = document.getElementById('closeDialog');
197
+
198
+ setTimeout(() => {
199
+ dialog.showModal();
200
+ }, 50000);
201
+
202
+ closeButton.addEventListener('click', () => {
203
+ dialog.close();
204
+ });
205
+ </script>
206
+
207
  <a href="https://discord.gg/tRC7hNXfPH" target="_blank">Join Discord </a><a href="https://buymeacoffee.com/Xyplon" target="_blank"> Buy me a coffee </a>
208
  <br>
209
  <a href="https://xyplon.web.app" target="_blank" id="vw" > VISIT WEBSITE </a>
210
+ <dialog id="websiteDialog">
211
+ <h3>Visit Our Website</h3>
212
+ <p>You can visit website for other tools and models</p>
213
+ <a href="https://xyplon.web.app" target="_blank">Visit xyplon.web.app</a>
214
+ <br><br>
215
+ <button id="closeDialog">Close</button>
216
+ </dialog>
217
 
218
 
219
  <div class="container mt-4">