-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final: Enhance app functionalities (#196)
- Loading branch information
1 parent
fd6746a
commit 068a312
Showing
9 changed files
with
151 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ node_modules | |
|
||
# Ignore the Emscripten SDK | ||
emsdk/ | ||
/MovieVerse-Mobile/platforms/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,5 @@ | |
|
||
# Generated by package manager | ||
node_modules/ | ||
platforms/ | ||
.env |
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ | |
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Light.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-SemiBold.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
|
@@ -1695,5 +1696,32 @@ <h2 id="other" style="cursor: pointer">Timeless Classics: Trending Classic Movie | |
searchInput.addEventListener('blur', clearSelection); | ||
}); | ||
</script> | ||
<script> | ||
let confettiTriggered = false; | ||
|
||
function launchConfetti() { | ||
const confettiInstance = confetti.create(null, { resize: true }); | ||
confettiInstance({ | ||
particleCount: 150, | ||
spread: 70, | ||
origin: { y: 0.6 }, | ||
}); | ||
|
||
const canvas = document.querySelector('canvas'); | ||
|
||
if (canvas) { | ||
canvas.style.zIndex = '9999999999'; | ||
canvas.style.position = 'fixed'; | ||
} | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', function () { | ||
if (!confettiTriggered) { | ||
launchConfetti(); | ||
|
||
confettiTriggered = true; | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> |
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
Binary file modified
BIN
+484 Bytes
(100%)
.../MovieVerse.xcworkspace/xcuserdata/davidnguyen.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ | |
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Light.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-SemiBold.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
|
@@ -1695,5 +1696,32 @@ <h2 id="other" style="cursor: pointer">Timeless Classics: Trending Classic Movie | |
searchInput.addEventListener('blur', clearSelection); | ||
}); | ||
</script> | ||
<script> | ||
let confettiTriggered = false; | ||
|
||
function launchConfetti() { | ||
const confettiInstance = confetti.create(null, { resize: true }); | ||
confettiInstance({ | ||
particleCount: 150, | ||
spread: 70, | ||
origin: { y: 0.6 }, | ||
}); | ||
|
||
const canvas = document.querySelector('canvas'); | ||
|
||
if (canvas) { | ||
canvas.style.zIndex = '9999999999'; | ||
canvas.style.position = 'fixed'; | ||
} | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', function () { | ||
if (!confettiTriggered) { | ||
launchConfetti(); | ||
|
||
confettiTriggered = true; | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> |
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ | |
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Light.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-SemiBold.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
|
@@ -1695,5 +1696,32 @@ <h2 id="other" style="cursor: pointer">Timeless Classics: Trending Classic Movie | |
searchInput.addEventListener('blur', clearSelection); | ||
}); | ||
</script> | ||
<script> | ||
let confettiTriggered = false; | ||
|
||
function launchConfetti() { | ||
const confettiInstance = confetti.create(null, { resize: true }); | ||
confettiInstance({ | ||
particleCount: 150, | ||
spread: 70, | ||
origin: { y: 0.6 }, | ||
}); | ||
|
||
const canvas = document.querySelector('canvas'); | ||
|
||
if (canvas) { | ||
canvas.style.zIndex = '9999999999'; | ||
canvas.style.position = 'fixed'; | ||
} | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', function () { | ||
if (!confettiTriggered) { | ||
launchConfetti(); | ||
|
||
confettiTriggered = true; | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> |
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ | |
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Light.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<link rel="preload" href="https://movie-verse.com/fonts/Poppins-SemiBold.ttf" as="font" type="font/ttf" crossorigin="anonymous" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
|
@@ -1695,5 +1696,32 @@ <h2 id="other" style="cursor: pointer">Timeless Classics: Trending Classic Movie | |
searchInput.addEventListener('blur', clearSelection); | ||
}); | ||
</script> | ||
<script> | ||
let confettiTriggered = false; | ||
|
||
function launchConfetti() { | ||
const confettiInstance = confetti.create(null, { resize: true }); | ||
confettiInstance({ | ||
particleCount: 150, | ||
spread: 70, | ||
origin: { y: 0.6 }, | ||
}); | ||
|
||
const canvas = document.querySelector('canvas'); | ||
|
||
if (canvas) { | ||
canvas.style.zIndex = '9999999999'; | ||
canvas.style.position = 'fixed'; | ||
} | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', function () { | ||
if (!confettiTriggered) { | ||
launchConfetti(); | ||
|
||
confettiTriggered = true; | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> |