1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00
This commit is contained in:
zumbiepig
2024-09-05 20:42:04 -07:00
parent c146fc70c1
commit 939f5946a5
2 changed files with 34 additions and 17 deletions

View File

@@ -157,15 +157,14 @@ const article = {
open: function (articleId: string) {
const modal = document.querySelector(`#article-${articleId}`) as HTMLElement | null;
const modalContent = document.querySelector(`#article-${articleId} .article-content`) as HTMLElement | null;
if (modal && modalContent) {
if (!articleAnimationLock && modal && modalContent) {
articleAnimationLock = true;
modal.style.animation = 'article 0.5s ease-in-out normal';
modal.style.animation = 'article-1 0.5s ease-in-out alternate 1';
modal.style.display = 'flex';
modalContent.scroll({ top: 0, left: 0, behavior: 'instant' });
modal.addEventListener(
'animationend',
() => {
articleAnimationLock = false;
const closeArticleHandler = (event: Event) => {
if (event.target === modal) {
modal.removeEventListener('click', closeArticleHandler);
@@ -173,26 +172,25 @@ const article = {
}
};
modal.addEventListener('click', closeArticleHandler);
articleAnimationLock = false;
},
{ once: true }
);
}
},
close: function (articleId: string) {
if (!articleAnimationLock) {
const modal = document.querySelector(`#article-${articleId}`) as HTMLElement | null;
if (!articleAnimationLock && modal) {
articleAnimationLock = true;
const modal = document.querySelector(`#article-${articleId}`) as HTMLElement | null;
if (modal) {
modal.style.animation = 'article 0.5s ease-in-out reverse';
modal.addEventListener(
'animationend',
() => {
modal.style.display = 'none';
articleAnimationLock = false;
},
{ once: true }
);
}
modal.style.animation = 'article-2 0.5s ease-in-out alternate 1';
modal.addEventListener(
'animationend',
() => {
modal.style.display = 'none';
articleAnimationLock = false;
},
{ once: true }
);
}
},
};