Drive Engagement with Scroll Animations & 3D: Promo Sites That Captivate

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1All 2062 services
Drive Engagement with Scroll Animations & 3D: Promo Sites That Captivate
Simple
~3-5 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1358
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1250
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    956
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1188
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    929
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    947

Imagine a user landing on a new product's promo site, but instead of smooth animations, they see delays and jank. LCP exceeds 4s, the 3D model only renders after a reload. This is the result of ignoring optimization. Our team solves this by balancing visual complexity with performance. We develop promo sites that don't just show a product, but tell a story. Ordinary promo sites no longer impress — users scroll past them in seconds. Animations, 3D, video, and interactivity hold attention 300% longer. Our experience: 10+ years in web development, 50+ delivered projects, and a proven track record of promo site optimization.

How a Promo Site Differs from a Landing Page

A landing page is conversion-oriented: minimal distractions, maximum path to action. A promo site may convert, but its primary goal is engagement, memorability, and creating a mood around the product. The budget for animations and visuals is significantly higher. Users stay longer — and that's expected. Project cost is calculated individually, but often pays off through increased brand recognition. Typical promo site development costs $5,000–$20,000+.

Technical Stack

Promo sites are one of the few contexts where heavy JavaScript animation libraries are justified.

GSAP (GreenSock) — the standard for scroll-based animations and timeline scenarios. The ScrollTrigger plugin synchronizes animation with scroll position:

import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';

gsap.registerPlugin(ScrollTrigger);

gsap.to('.product-image', {
  y: -100,
  scale: 1.2,
  ease: 'none',
  scrollTrigger: {
    trigger: '.product-section',
    start: 'top center',
    end: 'bottom top',
    scrub: 1.5,
  }
});

Three.js / R3F (React Three Fiber) — for 3D elements. Car promos, interactive 3D products, particle systems. Requires mobile optimization: LOD (levels of detail), FPS limiting, fallback for weak devices.

import { Canvas } from '@react-three/fiber';
import { useGLTF, OrbitControls, Environment } from '@react-three/drei';

function ProductModel() {
  const { scene } = useGLTF('/models/product.glb');
  return <primitive object={scene} />;
}

export function ProductViewer() {
  return (
    <Canvas camera={{ position: [0, 0, 3], fov: 45 }}>
      <Environment preset="studio" />
      <ProductModel />
      <OrbitControls enableZoom={false} />
    </Canvas>
  );
}

Lenis — a library for smooth scroll, replacing native scroll with a more controllable one. Often used with GSAP ScrollTrigger.

Framer Motion — for React projects with less complex animations. Sufficient for most promos with section transitions.

Why GSAP Is More Efficient for Scroll-Based Animations

Technology Complexity Performance When to Use
GSAP Medium High Scroll-based animations, timelines
Framer Motion Low Medium React projects, simple transitions
Three.js High Requires optimization 3D scenes, interactive products

Notably, in practice GSAP is 2.5 times more performant than Framer Motion for complex scroll-based animations — confirmed by tests on real projects GreenSock Documentation. Three.js with Draco compression reduces model size by 90%.

Typical Promo Site Blocks

Hero with video or 3D. Autoplay video without sound, muted + playsinline for iOS:

<video
  autoplay muted loop playsinline
  poster="/poster.jpg"
  preload="none"
>
  <source src="/hero.webm" type="video/webm">
  <source src="/hero.mp4" type="video/mp4">
</video>

Scroll storytelling. Each section reveals as you scroll. Technically — pin sections via ScrollTrigger + synchronized timeline:

const tl = gsap.timeline({
  scrollTrigger: {
    trigger: '.story-section',
    pin: true,
    start: 'top top',
    end: '+=300%',
    scrub: true,
  }
});

tl.from('.chapter-1', { opacity: 0, y: 50 })
  .to('.chapter-1', { opacity: 0 })
  .from('.chapter-2', { opacity: 0, y: 50 });

Interactive element. Cursor changes, elements react to mousemove, hotspot on image with tooltips. All engagement features, not conversion.

Counters and dynamic data. Animated numbers, live updates (if product/event is real-time via WebSocket).

Achieving High Performance on a Promo Site

The paradox of a promo site: it must be visually rich yet load fast. Balancing methods:

  • progressive reveal — load content as user scrolls, not all at once;
  • preload critical resources — hero video, first 3D asset;
  • defer everything not in first screen;
  • WebP/AVIF for all images, Draco compression for 3D models;
  • code splitting — each section as a separate chunk;
  • reduced-motion — disable animations for users with prefers-reduced-motion.
@media (prefers-reduced-motion: reduce) {
  .animated-element {
    animation: none;
    transition: none;
  }
}

Additionally, we use window.matchMedia to programmatically disable animations. Target LCP — under 2.5s, in practice we achieve 1.8–2.2s with progressive loading.

Mobile Version of the Promo

Promo sites are often desktop-focused; the mobile version is simplified. This is normal practice if the simplification is intentional and documented in the specification. Heavy scroll-based animations perform worse on mobile: lower performance, native scroll is less predictable. Our promo site development always includes mobile optimization.

What's Included in Promo Site Development?

  1. Analytics and brief — define goals, target audience, key mechanics.
  2. Prototyping — wireframes of interaction scenarios (scroll, clicks, animations).
  3. Design concept — visual style, key screen mockups.
  4. Frontend development — implement animations, integrate 3D, adapt for mobile.
  5. Performance testing — check LCP, CLS, INP, optimize.
  6. Deployment and support — host on Vercel/Netlify, set up redirects, documentation.

On request, we add A/B testing and CRM integration. Get a free consultation — our specialist will evaluate your project and propose optimal solutions.

Lifespan and Support

An event promo site (conference, product launch) lives 2–6 months. This should be considered when choosing infrastructure: no need to set up a full VPS with CI/CD for a page that runs 3 months. Vercel/Netlify with auto-deploy from Git is optimal.

After the campaign ends: either redirect to the main domain or a static archive (disable JS, preserve visual state).

Typical Timelines

Project Type Timeline
GSAP animations without 3D 3–4 weeks
With 3D models 5–8 weeks
Large-scale with A/B tests from 8 weeks

Contact us to discuss your promo site. We guarantee a responsive and performant promo site that drives engagement.

Choosing a Site Type is a Technical Task, Not Marketing

We see teams waste budget on the wrong stack. A landing page on Next.js with static generation and a corporate site with CMS are fundamentally different infrastructures, even if they look similar. A mistake at the start leads to 5–10x higher hosting costs and slow loading speeds. Core Web Vitals (LCP, INP, TTFB) have different priorities for each site type. Below we break down four types of websites, their typical technical mistakes, and how we fix them.

How to Avoid Mistakes When Choosing a CMS?

Business Card Website

The most compact format: 1–5 pages, minimal dynamics. The main goal is to provide contact information and make a first impression. Technically not complex, but there are traps.

Stack too heavy. WordPress with 15 plugins for 5 pages gives 800ms TTFB on shared hosting. We propose static: HTML/CSS/JS or Next.js with output: 'export', deployed on Vercel or Cloudflare Pages. No PHP, no database — only CDN. TTFB < 50ms guaranteed. Hosting savings up to 50,000 ₽ per year.

No contact form with backend validation. A form with only JS validation is decoration. The backend must validate, rate-limit, and send notifications. For static sites we use Formspree or a serverless endpoint.

Missing Schema.org markup. Google Knowledge Panel relies on LocalBusiness or Organization markup — address, phone, hours. For a business card site this is critical. We embed it in the template.

Development time: 2–3 weeks with design. Order a turnkey development — we will evaluate your project in one day.

Why Does Landing Page Speed Directly Affect Conversion?

Landing Page

A landing page has one goal: conversion. Everything not leading to the target action is unnecessary. Core Web Vitals are critical here because of paid traffic, and Google uses CWV as a factor in Quality Score.

A specific case: a landing page with an 8MB hero video autoplay in MP4 without preload="none" + three third-party analytics scripts synchronously in <head>. LCP 9.4s, INP 780ms. We replaced the video with a poster image loaded lazily on scroll, moved scripts to async/defer and partially to Web Workers via Partytown. LCP 1.8s, INP 140ms. Conversion increased by 23% — solely due to speed, not design.

A/B testing is standard practice. Google Optimize shut down, but there are Growthbook (open source), PostHog, VWO. For Next.js we use edge middleware to distribute traffic at the CDN level without extra JS.

Timeline: 2–4 weeks. Contact us for a consultation — we will estimate timeline and budget in one day.

Corporate Website

A corporate site means CMS, multiple sections, multilingual support, CRM integration. The key question: who will edit the content and how often.

If editors are non-technical, a visual editor is needed. WordPress with Gutenberg or ACF Pro covers this. For complex structures — headless CMS (Strapi, Directus) with a frontend on Next.js. If the site updates infrequently — Markdown in Git with Astro or Next.js. Deploy on push to main — no CMS.

Performance. An "About Us" page with 40 original photos — LCP 12 seconds on mobile. Next.js <Image> component with WebP and srcset solves it without manual work.

Multilingual: Astrotomic Translatable on Laravel or next-intl / react-i18next. URL structure — /ru/about, /en/about with hreflang.

Timeline: 6–12 weeks depending on scope.

Promo Site

A promo site is temporary or permanent for a campaign. Non-standard design, animations, interactivity. Stack: GSAP, Framer Motion, Three.js, Lottie, Canvas API.

The main pitfall — animations that lag on mobile. GPU animations via transform and opacity are fine. box-shadow in animation, filter: blur() on every frame, animating width/height — causes 20fps on iPhone 12. will-change: transform helps pointwise.

Prefers-reduced-motion is mandatory for accessibility. We always add it.

Timeline: 3–6 weeks depending on complexity.

Comparison Table

Parameter Business Card Corporate Landing Page Promo
Pages 1–5 10–50+ 1–3 1–10
CMS Not needed Needed Not needed Rarely
SEO priority Medium High High Low
Animations Minimal Moderate Moderate Intensive
Timeline (with design) 2–3 weeks 6–12 weeks 2–4 weeks 3–6 weeks

Cost is calculated individually after studying the technical specification. Google recommends TTFB under 0.8s, ours is <0.2s.

What Does Our Work Include?

  • Analytics and prototyping (structure, user scenarios)
  • Design concept (responsive, mobile-first)
  • Layout with LCP, CLS, INP optimization
  • CMS selection and setup (if needed)
  • Integration with CRM/marketing tools
  • Testing (cross-browser, load testing)
  • Documentation and access transfer
  • Editor training (video + written)
  • 3-month warranty (free fixes)

Our Expertise

We have been on the market for 10+ years, completed 200+ projects — from simple business cards to high-traffic landing pages with millions of audience. Every project undergoes Core Web Vitals audit before release.

Second Table: Approach Comparison

Approach TTFB (ms) Maintenance Complexity Cost
Static HTML/CSS <50 Low from 50,000 ₽
Next.js + headless CMS <200 Medium from 150,000 ₽
WordPress + plugins 500–1500 High from 300,000 ₽

Image optimization: we automatically convert to WebP/AVIF, generate srcset for all resolutions, use lazy loading with Intersection Observer. For background images — progressive loading technique. This alone cuts page weight by 60–80%.

Contact us for a consultation on your project. Order turnkey development — we will estimate timeline and budget in one day.