This repository has been archived on 2024-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
Nikiroy78.github.io/assets/main.js
2023-06-18 23:47:34 +03:00

6 lines
560 B
JavaScript

setInterval(async () => {
const isMainMenu = document.getElementById('main_img1')?.src;
document.getElementById('main_img1').src = window.screen.availWidth / window.screen.availHeight > 1.45 ? "/assets/hello/1.png" : "/assets/hello/m/1.png";
document.getElementById('main_img2').src = window.screen.availWidth / window.screen.availHeight > 1.45 ? "/assets/hello/2.png" : "/assets/hello/m/2.png";
document.getElementById('main_img3').src = window.screen.availWidth / window.screen.availHeight > 1.45 ? "/assets/hello/3.png" : "/assets/hello/m/3.png";
}, 1);