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

Feedback 2 #65

Open
wants to merge 9 commits into
base: feedback
Choose a base branch
from
10 changes: 7 additions & 3 deletions assets/styles/_intersection.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ $reduced-motion-speed-factor: 10;

@media (prefers-reduced-motion: reduce) {
$new-animation: ();

@each $value in $animation {
@if type-of($value) == number and unit($value) == "s" {
@if type-of($value)==number and unit($value)=="s" {
$new-animation: append($new-animation, $value * $reduced-motion-speed-factor);
} @else {
}

@else {
$new-animation: append($new-animation, $value);
}
}

#{$property}: $new-animation;
}
}
Expand Down Expand Up @@ -112,4 +116,4 @@ $reduced-motion-speed-factor: 10;

.story--animation {
@include reduced-motion-animation(animation, (fade-in 2s ease-in forwards));
}
}
2 changes: 1 addition & 1 deletion assets/styles/styles.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 10 additions & 17 deletions script.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
function applyDarkMode(prefersDarkMode) {
if (prefersDarkMode.matches) {
document.body.classList.add('dark-mode');
} else {
document.body.classList.remove('dark-mode');
}
}
applyDarkMode(darkModeMediaQuery);
darkModeMediaQuery.addListener(applyDarkMode);

const darkModeMediaQuery = window.matchMedia("(prefers-color-scheme: dark)");
function applyDarkMode(prefersDarkMode) {
if (prefersDarkMode.matches) {
document.body.classList.add("dark-mode");
} else {
document.body.classList.remove("dark-mode");
}
}
applyDarkMode(darkModeMediaQuery);
darkModeMediaQuery.addListener(applyDarkMode);

/* scene 1 */
const scene1__img__logo = document.querySelectorAll(".scene1__img--logo");

const options = {
Expand All @@ -35,8 +33,6 @@ scene1__img__logo.forEach((scene1__img__logo) => {
observer1.observe(scene1__img__logo);
});

/* scene 2 - cloud */

const scene2__img__cloud = document.querySelectorAll(".scene2__img--cloud");

const observer19 = new IntersectionObserver(
Expand All @@ -57,7 +53,6 @@ scene2__img__cloud.forEach((scene2__img__cloud) => {
observer19.observe(scene2__img__cloud);
});

/* scene 2 - buildings */
const scene2__buildings = document.querySelectorAll(".scene2__buildings");

const observer2 = new IntersectionObserver(
Expand All @@ -78,8 +73,6 @@ scene2__buildings.forEach((scene2__buildings) => {
observer2.observe(scene2__buildings);
});

/* scene 3 */

const scene3__shake = document.querySelectorAll(".scene3__shake");

const observer3 = new IntersectionObserver(
Expand Down