publish: hr-and-arts
This commit is contained in:
commit
5c8e460ddd
11
README.md
Normal file
11
README.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# hr-and-arts
|
||||||
|
|
||||||
|
A short film exploring the intersection of HR strategies and LA's arts scene
|
||||||
|
|
||||||
|
**Live demo:** https://anisha-patel.4ort.mov/hr-and-arts
|
||||||
|
|
||||||
|
## Related in the galaxy
|
||||||
|
|
||||||
|
- https://anisha-patel.4ort.net
|
||||||
|
|
||||||
|
_Built by anisha-patel in the 4ort galaxy._
|
||||||
19
hyperframe.json
Normal file
19
hyperframe.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"captions": true,
|
||||||
|
"voice": "af_nova",
|
||||||
|
"music_url": "https://4ort.live/v1/mtv/video/6297a0e1ff61?download=1",
|
||||||
|
"scenes": [
|
||||||
|
{
|
||||||
|
"id": "s1",
|
||||||
|
"narration": "Welcome to HR Meets the Arts. In this film, we explore the intersection of human resources strategies and the vibrant arts scene in Los Angeles."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "s2",
|
||||||
|
"narration": "Creativity is not just for the arts. In corporate culture, it's essential for fostering innovation and engagement among employees."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "s3",
|
||||||
|
"narration": "Bridging the gap between HR and the arts can lead to a more dynamic and inclusive workplace. Thank you for watching."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
40
index.html
Normal file
40
index.html
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<!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="60">
|
||||||
|
<audio id="bgm" src="audio/music.mp3" data-start="0" data-volume="0.15"></audio>
|
||||||
|
<audio id="voice-s1" src="audio/s1.wav" data-start="0"></audio>
|
||||||
|
<audio id="voice-s2" src="audio/s2.wav" data-start="20"></audio>
|
||||||
|
<audio id="voice-s3" src="audio/s3.wav" data-start="40"></audio>
|
||||||
|
|
||||||
|
<section id="s1" class="clip" data-start="0" data-duration="20" data-track-index="1">
|
||||||
|
<div style="background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176'); background-size: cover; position: absolute; inset: 0;"></div>
|
||||||
|
<h1 id="s1-title" style="font-size: 4rem; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.8);">HR Meets the Arts</h1>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="s2" class="clip" data-start="20" data-duration="20" data-track-index="1">
|
||||||
|
<div style="background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7'); background-size: cover; position: absolute; inset: 0;"></div>
|
||||||
|
<h1 id="s2-title" style="font-size: 3rem; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.8);">Creativity in Corporate Culture</h1>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="s3" class="clip" data-start="40" data-duration="20" data-track-index="1">
|
||||||
|
<div style="background-image: url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846'); background-size: cover; position: absolute; inset: 0;"></div>
|
||||||
|
<h1 id="s3-title" style="font-size: 3rem; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.8);">Bridging the Gap</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" }, 20.5);
|
||||||
|
tl.from("#s3-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 40.5);
|
||||||
|
window.__timelines["main"] = tl;
|
||||||
|
</script>
|
||||||
|
</body></html>
|
||||||
Loading…
Reference in New Issue
Block a user