Nano Banana Scroll-Stop Website Hero

Use the Nano Banana 2 asset-generation skill plus a scroll-stop prompter to produce two paired images and a transition video, then wire them into a website hero.

Web/UIwebui
by AgentVoltv1.0.0Published 1y ago1 install
Free to sign up · every skill included with AgentVolt Pro

Before & after

Same prompt, same agent — the only difference is the skill.

PromptCreate an animated website hero with scroll-driven paired product images.
Beforegeneric AI agent
You could create two complementary hero images and use animation to transition between them as the visitor scrolls. This would require coordinating the images, adding a video transition effect, and then wiring it into the website code with scroll listeners. You'd want the images to be visually appealing and on-brand. You might also include some text overlay or call-to-action elements. What product or concept would you like to feature in the hero?
Afterwith Nano Banana Scroll-Stop Website Hero
SCROLL-STOP HERO DELIVERABLE

ASSET GENERATION WORKFLOW:

STEP 1 - PAIR IMAGE PROMPTS:
Image 1 (Assembled state): "Modern logistics platform interface showing organized shipment dashboard, clean UI cards with green status indicators, organized color-coded shipping lanes, professional warehouse background blur. Style: SaaS dashboard aesthetic, morning light, minimal skeuomorphism."

Image 2 (Exploded state): "Same dashboard components and warehouse elements floating and dispersed outward from center point, as if exploding in slow motion. Maintain consistent lighting. Cards, typography, logos all separated and moving outward. Depth layering with foreground/mid/background elements. No blur effect."

GENERATION: Run prompts through 6-image batch. Select pair with highest visual consistency and clean separation.

STEP 2 - TRANSITION VIDEO:
Input: Image 1 (assembled), Image 2 (exploded). Motion prompt: "Smooth 6-second transition. Zoom out 20%, dashboard components scatter outward radially, simultaneous slight counterclockwise rotation. Particles or subtle glow trails during motion. Fade to product tagline and CTA button (appears at 5-second mark). Background warehouse elements remain static."

Output: 1080p MP4, 6 seconds, 30fps. Format for web (compressed to under 8MB).

STEP 3 - HTML INTEGRATION:
<div class="hero-scroll-container">
  <img id="hero-assembled" src="image-1.png" />
  <video id="hero-video" src="transition.mp4" autoplay muted />
  <img id="hero-exploded" src="image-2.png" />
</div>

<script>
window.addEventListener("scroll", () => {
  const scrollPct = window.scrollY / (document.body.scrollHeight - window.innerHeight);
  const container = document.querySelector(".hero-scroll-container");
  
  if (scrollPct < 0.15) {
    container.style.opacity = 1;
    heroVideo.currentTime = 0;
    heroVideo.style.display = "none";
  } else if (scrollPct < 0.4) {
    heroVideo.style.display = "block";
    heroVideo.currentTime = (scrollPct - 0.15) / 0.25 * 6; // 6 sec video
    container.style.opacity = 1;
  } else {
    heroVideo.style.display = "none";
    container.style.opacity = 0.9;
  }
});
</script>

RESULT: On page load, users see assembled hero image. As they scroll, video triggers and plays through transition. After 40% scroll depth, exploded image appears. Scroll back up: video reverses. Creates friction-free pause point (scroll-stop) encouraging brief engagement before continuing downpage.

About this skill


name: nano-banana-scroll-stop-hero description: Use the Nano Banana 2 asset-generation skill plus a scroll-stop prompter to produce two paired images and a transition video, then wire them into a website hero.

Nano Banana Scroll-Stop Website Hero

What This Does

The creator installs an asset-generation skill in Claude Code that produces two paired hero images (assembled then exploded) with matching logo and brand assets, then chains into an image-to-video model. Claude Code drops both into a website hero with a scroll-driven animation that fires as the visitor scrolls.

What You Get

  • Asset-generation skill installed globally
  • assembled and exploded paired images
  • matching logo and vehicle brand assets
  • image-to-video transition prompt
  • scroll-driven hero animation wired into HTML

Customize

  • brand_logo: PNG or SVG to embed
  • palette_source: firecrawl brand extraction or manual
  • motion_prompt: how items should move between frames
  • hero_layout: full-width or split
  • iterations: how many image variants to generate

Sample Output

For AnyVan, Claude produces a packed van image, an exploded version with furniture flying out, and a 7-second Kling transition ready to drop into the website hero.

Target Audience

Freelance web designers pitching premium landing pages

SKILL.md preview

SKILL.md
---
name: nano-banana-scroll-stop-hero
description: Use this skill to generate a paired before/after hero image set and transition video, then wire the result into a scroll-triggered website hero.
version: 1.0.0
category: Web/UI
author: AgentVolt
license: proprietary
tags:
  - web
  - ui
  - standard
---

# Nano Banana Scroll-Stop Website Hero

Generates a paired before/after hero image set and a transition video, then wires the result into a scroll-driven website hero animation.

## When to use

… (sign up to view the full skill)
Sign up to view, copy, and install the full skill

More development skills

View all Development skills →