| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Choose a Site</title> |
| <style> |
| |
| :root { |
| --background-light: #ffffff; |
| --background-dark: #000000; |
| --text-light: #111827; |
| --text-dark: #f3f4f6; |
| --primary-color: #000000; |
| --primary-hover: #333333; |
| --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
| --border-radius: 8px; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
| background-color: var(--background-light); |
| color: var(--text-light); |
| margin: 0; |
| padding: 20px; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| min-height: 100vh; |
| transition: background 0.3s ease, color 0.3s ease; |
| } |
| |
| body.dark-mode { |
| background-color: var(--background-dark); |
| color: var(--text-dark); |
| } |
| |
| .sites-list { |
| margin-top: 24px; |
| background: white; |
| padding: 20px; |
| border-radius: var(--border-radius); |
| box-shadow: var(--shadow); |
| width: 100%; |
| max-width: 500px; |
| transition: background 0.3s ease, transform 0.3s ease; |
| } |
| |
| body.dark-mode .sites-list { |
| background: #111111; |
| } |
| |
| .sites-list h3 { |
| margin: 0 0 16px 0; |
| font-size: 18px; |
| font-weight: 600; |
| color: inherit; |
| } |
| |
| #sitesList { |
| display: flex; |
| flex-direction: column; |
| gap: 8px; |
| } |
| |
| #sitesList div { |
| background: #f3f4f6; |
| padding: 12px; |
| border-radius: var(--border-radius); |
| font-size: 14px; |
| color: inherit; |
| transition: background 0.3s ease, transform 0.2s ease; |
| cursor: pointer; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| |
| body.dark-mode #sitesList div { |
| background: #1a1a1a; |
| } |
| |
| #sitesList div:hover { |
| background: #e5e7eb; |
| transform: translateX(5px); |
| } |
| |
| body.dark-mode #sitesList div:hover { |
| background: #2d2d2d; |
| } |
| |
| .loader { |
| border: 4px solid #f3f3f3; |
| border-top: 4px solid var(--primary-color); |
| border-radius: 50%; |
| width: 30px; |
| height: 30px; |
| animation: spin 1s linear infinite; |
| display: none; |
| margin: 20px auto; |
| } |
| |
| @keyframes spin { |
| 0% { transform: rotate(0deg); } |
| 100% { transform: rotate(360deg); } |
| } |
| |
| .theme-toggle { |
| position: fixed; |
| top: 20px; |
| right: 20px; |
| background: var(--primary-color); |
| color: white; |
| border: none; |
| padding: 10px 15px; |
| border-radius: var(--border-radius); |
| cursor: pointer; |
| transition: background 0.3s ease, transform 0.2s ease; |
| } |
| |
| .theme-toggle:hover { |
| background: var(--primary-hover); |
| transform: scale(1.1); |
| } |
| |
| .exit-button { |
| position: fixed; |
| top: 20px; |
| left: 20px; |
| background: var(--primary-color); |
| color: white; |
| border: none; |
| padding: 10px 15px; |
| border-radius: var(--border-radius); |
| cursor: pointer; |
| transition: background 0.3s ease, transform 0.2s ease; |
| display: none; |
| } |
| |
| .exit-button:hover { |
| background: var(--primary-hover); |
| transform: scale(1.1); |
| } |
| |
| .translate-button { |
| position: fixed; |
| top: 60px; |
| left: 20px; |
| background: var(--primary-color); |
| color: white; |
| border: none; |
| padding: 10px 15px; |
| border-radius: var(--border-radius); |
| cursor: pointer; |
| transition: background 0.3s ease, transform 0.2s ease; |
| display: none; |
| } |
| |
| .translate-button:hover { |
| background: var(--primary-hover); |
| transform: scale(1.1); |
| } |
| |
| .pagination { |
| display: flex; |
| justify-content: center; |
| gap: 10px; |
| margin-top: 20px; |
| } |
| |
| .pagination button { |
| background: var(--primary-color); |
| color: white; |
| border: none; |
| padding: 8px 12px; |
| border-radius: var(--border-radius); |
| cursor: pointer; |
| transition: background 0.3s ease, transform 0.2s ease; |
| } |
| |
| .pagination button:hover { |
| background: var(--primary-hover); |
| transform: scale(1.1); |
| } |
| |
| .pagination button:disabled { |
| background: #cccccc; |
| cursor: not-allowed; |
| } |
| |
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(-10px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| .sites-list, .theme-toggle, .exit-button, .translate-button, .pagination { |
| animation: fadeIn 0.5s ease-out; |
| } |
| </style> |
| </head> |
| <body> |
| <button class="theme-toggle" onclick="toggleTheme()">🌙</button> |
| <button class="exit-button" onclick="exitSite()">Exit</button> |
| <button class="translate-button" onclick="toggleLanguage()">Перевести на русский</button> |
|
|
| <div class="sites-list"> |
| <h3>Choose website</h3> |
| <div id="sitesList"></div> |
| <div class="pagination"> |
| <button id="prevPage" disabled>Back</button> |
| <button id="nextPage">forward</button> |
| </div> |
| </div> |
|
|
| |
| <div class="loader" id="loader"></div> |
|
|
| <script> |
| const websims = [ |
| "https://fluxai.pro/fast-flux", |
| "https://aivideogenerator.me/ru", |
| "https://airesumebuilder.me/ru", |
| "https://www.ninjaed.com/", |
| "https://essay.art/", |
| "https://deepnostalgia.ai/", |
| "https://aicoloringpages.net/", |
| "https://ailovemusic.net/", |
| "https://onionai.so/", |
| "https://www.yeschat.ai/ru/features/text-to-image-ai", |
| "https://slea.ai/ru", |
| "https://pngmaker.ai/ru", |
| "https://www.ai-portraits.org/ru", |
| "https://remaker.ai/", |
| "https://math.now/ru?utm_source=www.yeschat.ai", |
| "https://learngerman.ai/", |
| "https://ai-song.ai/", |
| "https://videoweb.ai/", |
| "https://www.cvformatter.co/", |
| "https://sunoapi.org/", |
| "https://qwen-qwen2-5-vl-72b-instruct.hf.space/" |
| ]; |
| |
| const itemsPerPage = 6; |
| let currentPage = 1; |
| |
| function goToSite(site) { |
| showLoader(); |
| setTimeout(() => { |
| window.location.href = site; |
| |
| localStorage.setItem('showExitButton', 'true'); |
| |
| |
| if (site === "https://essay.art/") { |
| localStorage.setItem('showTranslateButton', 'true'); |
| } |
| }, 1000); |
| } |
| |
| function exitSite() { |
| showLoader(); |
| setTimeout(() => { |
| window.location.href = "https://your-main-site.com"; |
| }, 1000); |
| } |
| |
| function toggleLanguage() { |
| const translateButton = document.querySelector('.translate-button'); |
| if (translateButton.textContent === "Перевести на русский") { |
| translateButton.textContent = "Translate to English"; |
| |
| } else { |
| translateButton.textContent = "Перевести на русский"; |
| |
| } |
| } |
| |
| function showLoader() { |
| document.getElementById('loader').style.display = 'block'; |
| } |
| |
| function toggleTheme() { |
| document.body.classList.toggle('dark-mode'); |
| const themeToggle = document.querySelector('.theme-toggle'); |
| themeToggle.textContent = document.body.classList.contains('dark-mode') ? '☀️' : '🌙'; |
| } |
| |
| |
| function displaySites(page) { |
| const sitesList = document.getElementById('sitesList'); |
| sitesList.innerHTML = ''; |
| |
| const startIndex = (page - 1) * itemsPerPage; |
| const endIndex = startIndex + itemsPerPage; |
| const sitesToShow = websims.slice(startIndex, endIndex); |
| |
| sitesToShow.forEach(site => { |
| const siteElement = document.createElement('div'); |
| siteElement.textContent = site; |
| siteElement.addEventListener('click', () => goToSite(site)); |
| sitesList.appendChild(siteElement); |
| }); |
| |
| |
| document.getElementById('prevPage').disabled = page === 1; |
| document.getElementById('nextPage').disabled = endIndex >= websims.length; |
| } |
| |
| |
| document.getElementById('prevPage').addEventListener('click', () => { |
| if (currentPage > 1) { |
| currentPage--; |
| displaySites(currentPage); |
| } |
| }); |
| |
| |
| document.getElementById('nextPage').addEventListener('click', () => { |
| if (currentPage * itemsPerPage < websims.length) { |
| currentPage++; |
| displaySites(currentPage); |
| } |
| }); |
| |
| |
| if (localStorage.getItem('showExitButton') === 'true') { |
| document.querySelector('.exit-button').style.display = 'block'; |
| localStorage.removeItem('showExitButton'); |
| } |
| |
| if (localStorage.getItem('showTranslateButton') === 'true') { |
| document.querySelector('.translate-button').style.display = 'block'; |
| localStorage.removeItem('showTranslateButton'); |
| } |
| |
| |
| displaySites(currentPage); |
| </script> |
| </body> |
| </html> |