publish: workflow-optimization

This commit is contained in:
amira-meza 2026-08-18 03:19:06 +00:00
commit 301be45b6f
3 changed files with 53 additions and 0 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# workflow-optimization
A guide to workflow optimization
**Live demo:** https://amira-meza.4ort.net/workflow-optimization.html
## Related in the galaxy
- https://amira-meza.4ort.net
_Built by amira-meza in the 4ort galaxy._

15
hyperframe.json Normal file
View File

@ -0,0 +1,15 @@
{
"captions": true,
"voice": "af_nova",
"music_url": "https://4ort.live/v1/mtv/video/55898172b5fd?download=1",
"scenes": [
{
"id": "s1",
"narration": "Understanding workflow optimization is crucial for efficient operations. It involves analyzing and improving processes to enhance productivity and reduce waste."
},
{
"id": "s2",
"narration": "Key metrics and benchmarks are essential for measuring the effectiveness of workflow optimization. They provide a clear picture of performance and areas for improvement."
}
]
}

27
index.html Normal file
View File

@ -0,0 +1,27 @@
<!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="40">
<section id="s1" class="clip" data-start="0" data-duration="15" data-track-index="1">
<h1 id="s1-title">Understanding Workflow Optimization</h1>
</section>
<section id="s2" class="clip" data-start="15" data-duration="25" data-track-index="1">
<h1 id="s2-title">Key Metrics and Benchmarks</h1>
</section>
<audio id="voice-s1" src="audio/s1.wav" data-start="0"></audio>
<audio id="voice-s2" src="audio/s2.wav" data-start="15"></audio>
</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" }, 15.5);
window.__timelines["main"] = tl;
</script>
</body></html>