Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: rework distractions page #82

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed public/images/burger.png
Binary file not shown.
29 changes: 14 additions & 15 deletions src/simulators/distractions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export const TIMEOUTS = {
const h2 = "h2";
const p = "p";
const img = "img";
const button = "button";

//dom elements to be created
const imgEl_0 = ".wds-img-element";
const textEl_0 = ".wds-text-element-0";
const textEl_1 = ".wds-text-element-1";
const textEl_2 = ".wds-text-element-2";
Expand All @@ -48,8 +48,8 @@ const textEl_4 = ".wds-text-element-4";

//classes for css animations
const paragraphAnimation = "wds-paragraph-animation";
const buttonAnimation = "wds-button-animation";
const headingAnimation = "wds-heading-animation";
const imgAnimation_0 = "wds-img-animation-0";
const imgAnimation_1 = "wds-img-animation-1";
const textAnimation_0 = "wds-text-animation-0";
const textAnimation_1 = "wds-text-animation-1";
Expand Down Expand Up @@ -107,44 +107,43 @@ const scriptImportedFromExternalRepository = () => {
function launchAnimations() {
TIMEOUTS.setTimeout(() => {
addClass(p, paragraphAnimation);
addClass(imgEl_0, imgAnimation_0);
addClass(textEl_0, textAnimation_0);
addClass(img, imgAnimation_1);
addClass(h2, headingAnimation);
}, 500);
}, 100);

TIMEOUTS.setTimeout(() => {
removeClass(imgEl_0, imgAnimation_0);
addClass(textEl_0, textAnimation_0);
}, 5000);
addClass(h2, headingAnimation);
addClass(button, buttonAnimation);
}, 400);

TIMEOUTS.setTimeout(() => {
removeClass(textEl_0, textAnimation_0);
addClass(textEl_1, textAnimation_1);
}, 12000);
}, 5000);

TIMEOUTS.setTimeout(() => {
removeClass(textEl_1, textAnimation_1);
addClass(textEl_2, textAnimation_2);
}, 20000);
}, 13000);

TIMEOUTS.setTimeout(() => {
removeClass(textEl_2, textAnimation_2);
addClass(textEl_3, textAnimation_3);
}, 26000);
}, 19000);

TIMEOUTS.setTimeout(() => {
removeClass(textEl_3, textAnimation_3);
addClass(textEl_4, textAnimation_4);
}, 32000);
}, 25000);

TIMEOUTS.setTimeout(() => {
removeClass(textEl_4, textAnimation_4);
TIMEOUTS.clearAllTimeouts();
}, 36000);
}, 29000);
}

launchAnimations();
distractionIntervale = setInterval(launchAnimations, 36000);
distractionIntervale = setInterval(launchAnimations, 29000);
};

export const removeDistractions = () => {
Expand All @@ -153,7 +152,7 @@ export const removeDistractions = () => {
removeClass(p, paragraphAnimation);
removeClass(img, imgAnimation_1);
removeClass(h2, headingAnimation);
removeClass(imgEl_0, imgAnimation_0);
removeClass(button, buttonAnimation);
removeClass(textEl_0, textAnimation_0);
removeClass(textEl_1, textAnimation_1);
removeClass(textEl_2, textAnimation_2);
Expand Down
12 changes: 5 additions & 7 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ a {
z-index: 10000 !important;
}

.wds-img-element.wds-img-animation-0 {
display: block !important;
background-image: url("/images/burger.png") !important;
animation: move 5s infinite !important;
}

@keyframes move {
from {
top: -300px;
Expand Down Expand Up @@ -184,7 +178,11 @@ a {
}

.wds-paragraph-animation {
animation: flickerAnimation 1.2s infinite !important;
animation: flickerAnimation 1s infinite !important;
}

.wds-button-animation {
animation: flickerAnimation 1s infinite !important;
}

@keyframes flickerAnimation {
Expand Down