publish: conservation-education-negros-fruit-dove

This commit is contained in:
angela-monroe 2026-08-18 11:50:54 +00:00
commit 10232e7ff2
3 changed files with 64 additions and 0 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# conservation-education-negros-fruit-dove
A hyperframe film about conservation education using the Negros Fruit Dove as a case study.
**Live demo:** https://angela-monroe.4ort.net/films/conservation-education-negros-fruit-dove
## Related in the galaxy
- https://angela-monroe.4ort.net/conservation-education.html
_Built by angela-monroe in the 4ort galaxy._

12
hyperframe.json Normal file
View File

@ -0,0 +1,12 @@
{
"captions": true,
"voice": "af_nova",
"scenes": [
{ "id": "s1", "narration": "Welcome to Conservation Education: The Negros Fruit Dove. This documentary explores the efforts to protect this critically endangered bird species." },
{ "id": "s2", "narration": "The Negros Fruit Dove is a critically endangered bird species native to the Philippines. It is known for its vibrant plumage and is a symbol of biodiversity." },
{ "id": "s3", "narration": "The Negros Fruit Dove faces several conservation challenges, including habitat loss, climate change, and illegal wildlife trade." },
{ "id": "s4", "narration": "Various educational initiatives have been launched to raise awareness and promote conservation efforts for the Negros Fruit Dove." },
{ "id": "s5", "narration": "Community involvement is crucial in the conservation of the Negros Fruit Dove. Local communities play a vital role in protecting the species." },
{ "id": "s6", "narration": "In conclusion, the conservation of the Negros Fruit Dove requires a collective effort. Thank you for watching Conservation Education: The Negros Fruit Dove." }
]
}

41
index.html Normal file
View File

@ -0,0 +1,41 @@
<!doctype html>
<html><head><meta charset="UTF-8"/>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
<style>
body{margin:0;background:#0b0f14;color:#fff;font-family:Inter,system-ui,sans-serif}
#root{position:relative;width:1920px;height:1080px;overflow:hidden}
.clip{position:absolute;inset:0;display:grid;place-items:center}
</style></head>
<body>
<div id="root" data-composition-id="main" data-start="0" data-width="1920" data-height="1080" data-duration="180">
<section id="s1" class="clip" data-start="0" data-duration="30" data-track-index="1">
<h1 id="s1-title">Conservation Education: The Negros Fruit Dove</h1>
</section>
<section id="s2" class="clip" data-start="30" data-duration="30" data-track-index="1">
<h1 id="s2-title">Introduction to the Negros Fruit Dove</h1>
</section>
<section id="s3" class="clip" data-start="60" data-duration="30" data-track-index="1">
<h1 id="s3-title">Conservation Challenges</h1>
</section>
<section id="s4" class="clip" data-start="90" data-duration="30" data-track-index="1">
<h1 id="s4-title">Educational Initiatives</h1>
</section>
<section id="s5" class="clip" data-start="120" data-duration="30" data-track-index="1">
<h1 id="s5-title">Community Involvement</h1>
</section>
<section id="s6" class="clip" data-start="150" data-duration="30" data-track-index="1">
<h1 id="s6-title">Conclusion</h1>
</section>
</div>
<script>
window.__timelines = window.__timelines || {};
const tl = gsap.timeline({ paused: true });
tl.to("#s1-title", { opacity: 1, y: 0, duration: 0.6, ease: "power3.out" }, 0.2);
tl.from("#s2-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 30.5);
tl.from("#s3-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 60.5);
tl.from("#s4-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 90.5);
tl.from("#s5-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 120.5);
tl.from("#s6-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 150.5);
window.__timelines["main"] = tl;
</script>
</body></html>