-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
42 lines (36 loc) · 1.24 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { setupLenis } from "./src/scripts/lenis.js";
import { setupBackground } from "./src/scripts/three/setupAnimation.js";
const setup = () => {
// 設定を行ったLenisのインスタンスを作成
const lenis = setupLenis();
// アンカーリンクを取得
const anchor = document.querySelector(".js-anchor");
// クリック時に目的の箇所までスクロールする
anchor.addEventListener("click", (e) => {
// urlを変更しないようにする
e.preventDefault();
// スクロール
lenis.scrollTo("#animation");
});
// モーダルを開くボタン
const openButton = document.querySelector(".js-modal-open-button");
// モーダルを閉じるボタン
const closeButton = document.querySelector(".js-modal-close-button");
// モーダル本体
const modal = document.querySelector("#modal");
openButton.addEventListener("click", () => {
// モーダルを表示する
modal.showModal();
// スクロールを止める
lenis.stop();
});
closeButton.addEventListener("click", () => {
// モーダルを閉じる
modal.close();
// スクロールを再開する
lenis.start();
});
// アニメーションの設定
setupBackground(lenis);
};
setup();