-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
80 lines (67 loc) · 1.86 KB
/
script.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
var tag = document.createElement("script")
tag.src = "https://www.youtube.com/iframe_api"
var firstScriptTag = document.getElementsByTagName("script")[0]
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag)
let video
let ambientLight
let animationHasEnded = false
const videoId = "EbHhQfTvMSA"
function createAmbientLight() {
if (!animationHasEnded) return
ambientLight = new YT.Player("ambient-light", {
videoId,
events: {
onReady: ambientLightReady,
onStateChange: ambientStateChange,
},
})
}
window.onYouTubeIframeAPIReady = function () {
video = new YT.Player("video", {
videoId,
events: {
onStateChange: videoStateChange,
},
})
}
function videoStateChange(event) {
switch (event.data) {
case YT.PlayerState.PLAYING:
if (!ambientLight) return
ambientLight.seekTo(event.target.getCurrentTime())
ambientLight.playVideo()
break
case YT.PlayerState.PAUSED:
if (!ambientLight) return
ambientLight.seekTo(event.target.getCurrentTime())
ambientLight.pauseVideo()
break
}
}
function betterAmbientLight(event) {
event.target.mute()
const qualityLevels = event.target.getAvailableQualityLevels()
if (qualityLevels && qualityLevels.length && qualityLevels.length > 0) {
qualityLevels.reverse()
const lowestLevel =
qualityLevels[qualityLevels.findIndex((q) => q !== "auto")]
event.target.setPlaybackQuality(lowestLevel)
}
}
function ambientLightReady(event) {
betterAmbientLight(event)
}
function ambientStateChange(event) {
switch (event.data) {
case YT.PlayerState.BUFFERING:
case YT.PlayerState.PLAYING:
betterAmbientLight(event)
break
}
}
const app = document.querySelector("#app")
app.addEventListener("animationend", (e) => {
if (e.animationName !== "appear") return
animationHasEnded = true
createAmbientLight()
})