Saltar al contenido principal
LIVE

Visual Configurator

Now active with 50+ animations

Get Started
NEW

Library

Visual configurator

SureCart

Resources

Templates
Get StartedLogin
Main categories

Hero

Cards

Pricing

Header

Features

Testimonial

CTA

Button

Soon

About

Contact

Megamenu

Roadmap

Ready to enhance your Bricks Builder experience?

Access our complete library of professional components.

Explore allQuick Started
Animated elements

Core Background

Dynamic background animations

Showcase

Impressive presentation effects

Visual effects

Eye-catching elements

Animated texts

Dynamic typography effects

Interactions

User-triggered animations

Menu animation

Interactive Menu Effects

New

Transition pages

Smooth navigations effects

Soon

Instant Motion

Instant animations, preconfigured for stunning visual impact

Ready to enhance your Bricks Builder experience?

Add premium elements that enhance user experience.

Quick Started
SureCart components

Product pages

High quality product templates

SureSwitch

Dynamic price toggle with flexible payment options

SureProtect

Elegant content protection for premium membership areas

Ready to enhance your Bricks Builder experience?

Take advantage of these extraordinary features to enrich your customers' websites.

Explore all

Pricing

Simple, transparent pricing plans

Limited LTD

About me

Learn about Bricksfusion

ChangeLog

Latest updates and improvements

Roadmap

Find out what's coming to Bricksfusion

Contact

Get in touch with us

Community

Join our facebook community

Quick Started

Discover how easy Bricksfusion is

Download Core Framework Stylesheet

Makes templates look exactly as designed

Ready to enhance your Bricks Builder experience?

Unlock Bricksfusion. Make today your launch day.

Get Started
  • Library
    • Library

    • Explore Full Library

      Access our complete collection of professional components.

      View All Components
    • Hero

      Cards

      Pricing

      Header

      Features

      Testimonial

      CTA

      About

      Contact

      Megamenu

      Roadmap

  • Visual configurator
    • Visual Configurator

    • Animated elements

      Enhace your projects with professional motion effects.

      Get Premium Access
    • Animated Elemnets

      Core Background

      Dynamic background animations

      ShowCase

      Impressive presentation effects

      Visual effects

      Eye-catching elements

      Animated texts

      Dynamic typography effects

      Interactions

      User-triggered animations

      Menu animation

      Interactive Menu Effects

      New

      Transition pages

      Smooth navigations effects

      Soon

      Instant Motion

      Instant animations, preconfigured for stunning visual impact

  • SureCart
    • SureCart

    • SureCart components

      Product pages

      High quality product templates

      SureSwitch

      Dynamic price toggle with flexible payment options

      SureProtect

      Elegant content protection for premium membership areas

  • Templates
  • Resources
    • Resources

    • Pricing

      Simple, transparent pricing plans

      Limited LTD

      About me

      Learn about Bricksfusion

      Contact

      Get in touch with us

      ChangeLog

      Latest updates and improvements

      Roadmap

      Find out what's coming to Bricksfusion

      Quick Started

      Discover how easy Bricksfusion is!

      Community

      Join our facebook community

  • Get StartedLogin

    Documentation

    v2.0

    GETTING STARTED
    Quick started
    Installing transitions
    MENU ANIMATIONS
    Expandable tab

    New

    Mobile Opener

    New

    Dynamic island
    CORE BACKGROUND
    Ambient Gradient
    Aura Flow
    Celestial Flow
    Cosmic Harmony
    Fire effect
    Floating Glow
    Fluids
    Nebula
    Neural

    New

    Network effectSnowfall
    Video Overlay
    New!
    Wave Background
    New!
    Path

    New

    Vortex
    SHOWCASE
    AutoSlide
    Avatar
    Brand Carousel
    Card Expand
    Card Twist
    Card Tilted
    Carousel Cards
    Fade Flow
    Scroll Gallery

    New

    Scroll Stack
    Talent Orbit
    Wave Card
    VISUAL EFFECTS
    Blossom

    New

    Border Drift
    Border Stream
    Button Reveal
    Circles
    Curtain Reveal
    Ethereal Trail
    Flip Canvas
    Gemini

    New

    Glass Card
    Grid Distorsion

    New

    Grid 3D

    New

    PrismBorder
    Spotlight
    Status Pulse
    SVG Reveal
    Whisper motion

    New

    ANIMATED TEXT
    Explode

    New

    Morphing text

    New

    Proximity

    New

    Reveal text
    Text Motion
    Text Wave
    Video text

    New

    Word Rotate
    INTERACTION
    Copy&Paste
    Float vision

    New

    Folder
    Horizontal Parallax
    Smart Notify
    Social Bloom
    Timeline GradientVertical Parallax
    INSTANT MOTION
    Ray Cast
    Water
    Gradient
    Orbe
    Huly
    Warp
    SURECART
    Installing templatesSureCart 001 Product PageSureCart 002 Product PageSureCart 003 Product PageSureCart 004 Product Page
    BUTTONS
    Hover fill
    Ripple effect
    Wave effect
    Magnetic effect
    Hover 3D
    Shine effect
    Portal effect
    Essence effect
    Aura effect
    Brush effect
    TRANSITION PAGES
    Transition Page 1

    New

    Transition Page 2

    New

    Transition Page 3

    New

    Transition Page 4

    New

    Transition Page 5

    New

    Transition Page 6

    New

    Transition Page 7

    New

    Premium element

    Visual Effect

    Sequential Animation

    Sequential Animation enables a scroll-based animation using a sequence of images. As users scroll, the sequence dynamically updates, creating a smooth animation effect. The implementation is particularly effective for storytelling, showcasing product details, or adding interactivity to your designs.

    Preview

    Open preview

    Quick Setup

    This element needs to split the video you are going to use in many images, I will help you in the process.

    This element needs to split the video you are going to use in many images, I will help you in the process.

    Step 1: Prepare the Video

    • Record/prepare a video no longer than 10 seconds.
    • Use HD quality (1920×1080) to ensure crisp image output.

    Step 2: Install FFmpeg

    • Download FFmpeg from https://ffmpeg.org/download.html.
      • For Windows: Choose the option “Windows builds from gyan.dev.”
    • Extract the downloaded ZIP file.
    • Copy the bin folder to C:\ffmpeg

    FFmpeg is a command line tool. You need to open it from the CMD (command prompt):

    • Press Windows + R
    • Type ‘cmd’ and press Enter
    • Navigate to the folder where you have your video: cd path/to/your/folder

    Tip: To find the path to the video: Go to the folder where the video is Hold down the Shift key and right-click on the video Select ‘Copy as path’.

    Step 3: Extract Frames

    Open CMD as administrator and run these commands:

    ffmpeg -i “[full_path_video]” -vf “fps=24” -c:v libwebp -q:v 90 “C:\bin\frames_%04d.webp”

    • -i “[full_path_video]”
      • Specifies the input video file. Replace [full_path_video] with the full file path of the video you want to process.
      • Example: "C:\Users\George\Downloads\MyVideo.mp4".
    • -vf “fps=24”
      • Applies a video filter (-vf) to set the output frame rate to 24 frames per second (fps).
      • This means FFmpeg will extract 24 images per second of video.
    • -c:v libwebp
      • Chooses the video codec (-c:v) to encode the frames into the WebP format, which is optimized for web usage and supports transparency.
    • q:v 90
      • Sets the quality of the output images. The -q:v flag adjusts the compression quality:
        • 0: Lowest quality, smallest file size.
        • 100: Maximum quality, largest file size.
    • “C:\bin\frames_%04d.webp”
      • Specifies the output directory, filename format, and image format:
        • C:\bin: Folder where the images will be saved.
        • frames_%04d.webp
          • frames_: Base name for the images.
          • %04d: Sequence numbering padded to 4 digits (e.g., frames_0001.webp, frames_0002.webp).
          • .webp: File format for the output images.

    After entering your full command all images will go to the bin folder, there you can find them.

    Step 4: Upload Frames to Hosting

    • Use an FTP client (e.g., FileZilla) to upload the generated frames.
    • Create a new directory on your server:
      • wp-content/uploads/project-name
    • Upload all the frames to this folder.
    • Note the base URL of your frames, such as:
      • https://yourdomain.com/wp-content/uploads/project-name/frame_

    The path ends in ‘frame_’ because the numbering is not taken into account. If you had defined another name such as ‘images’ then the path would have to end in ‘images_’.

    Step 5: Implementation in Bricks Builder

    To implement the extracted WebP images as a scroll-based animation in Bricks Builder, you will use a ‘section’ element with specific attributes to configure the scroll sequence. Here is how each attribute works:

    data-scroll-sequence

    Required

    • Purpose: Marks the section as a scroll sequence container.
    • Usage: Add this attribute to your section to enable the scroll-based animation.

    data-frames

    Required

    • Purpose: Specifies the total number of frames in your animation.
    • Value: The exact number of WebP images you extracted using FFmpeg.
    • Example: If you extracted 90 frames, use data-frames="90".

    data-sequence-path

    Required

    • Purpose: Defines the base path to the WebP frames stored on your server.
    • Value: The complete URL path, including the prefix of your image filenames.
    • Example: If your images are stored at https://yourdomain.com/uploads/project/frame_, use data-sequence-path="https://yourdomain.com/uploads/project/frame_".

    Advanced configuration

    data-desktop-width

    Optional

    Specifies the width of the canvas container in percentages for desktop devices.

    Default: 80

    data-desktop-height

    Optional

    Specifies the height of the canvas container in viewport height (vh) for desktop devices.

    Default: 80

    data-mobile-landscape-height

    Optional

    Sets the height of the canvas container in landscape mode on mobile devices (in vh)

    Default: 80

    data-mobile-portrait-height

    Optional

    Sets the height of the canvas container in portrait mode on mobile devices (in vh).

    Default: 100

    data-start-delay

    Optional

    Indicates the percentage (as a decimal) of the viewport height to scroll before the animation starts.

    Default: 0.2

    data-section-height

    Optional

    Sets the total height of the section (in vh), allowing control over the scrollable area.

    Default: 150

    data-animation-intensity

    Optional

    Adjusts the intensity of the animation effect.

    Default: 1

    data-animation-effect

    Optional

    Adds effects to the animation, such as: zoom-in or zoom-out.

    Default: none

    We're here to help

    Choose how you'd like to connect with our support team

    Contact Support

    Get help from our team of experts

    Response within 24 hours