-
Notifications
You must be signed in to change notification settings - Fork 919
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02db980
commit 79af51e
Showing
6 changed files
with
162 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
const ANIMATION_RUNNING = 'data-animation-running'; | ||
|
||
function togglePlayState(e) { | ||
const animationContainer = e.target.closest(`[${ANIMATION_RUNNING}]`); | ||
if (animationContainer.getAttribute(ANIMATION_RUNNING) === 'true') { | ||
animationContainer.setAttribute(ANIMATION_RUNNING, 'false'); | ||
} else { | ||
animationContainer.setAttribute(ANIMATION_RUNNING, 'true'); | ||
} | ||
} | ||
|
||
function init() { | ||
// play animations if motion is allowed | ||
if (window.Mozilla.Utils.allowsMotion()) { | ||
const animationContainers = document.querySelectorAll( | ||
`[${ANIMATION_RUNNING}]` | ||
); | ||
animationContainers.forEach((container) => | ||
container.setAttribute(ANIMATION_RUNNING, 'true') | ||
); | ||
} | ||
|
||
// play or pause animations on button click | ||
const playStateButtons = document.querySelectorAll('.c-animation-button'); | ||
playStateButtons.forEach((button) => | ||
button.addEventListener('click', (e) => togglePlayState(e)) | ||
); | ||
} | ||
|
||
init(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters