D
Digmarket. Preview
Navigation
Home Free

Abstract Particle Hero – Deep Sapphire Fluid

<div class="fp-abstract-particle-hero-background-ui">
    <svg style="width:0;height:0;position:absolute;" aria-hidden="true" focusable="false">
        <defs>
            <filter id="fp-abstract-particle-hero-background-ui-goo">
                <feGaussianBlur in="SourceGraphic" stdDeviation="15" result="blur" />
                <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 25 -10" result="goo" />
                <feBlend in="SourceGraphic" in2="goo" />
            </filter>
        </defs>
    </svg>

    <div class="fp-abstract-particle-hero-background-ui-stage">
        
        <div class="fp-abstract-particle-hero-background-ui-fluid">
            <div class="fp-abstract-particle-hero-background-ui-blob-pos">
                <div class="fp-abstract-particle-hero-background-ui-blob-shape fp-abstract-particle-hero-background-ui-shape-1"></div>
            </div>
            <div class="fp-abstract-particle-hero-background-ui-blob-pos">
                <div class="fp-abstract-particle-hero-background-ui-blob-shape fp-abstract-particle-hero-background-ui-shape-2"></div>
            </div>
            <div class="fp-abstract-particle-hero-background-ui-blob-pos">
                <div class="fp-abstract-particle-hero-background-ui-blob-shape fp-abstract-particle-hero-background-ui-shape-3"></div>
            </div>
        </div>

        <div class="fp-abstract-particle-hero-background-ui-content">
            <span class="fp-abstract-particle-hero-background-ui-badge">Digital Fluidity</span>
            <h2 class="fp-abstract-particle-hero-background-ui-title">CREATIVE<br>STUDIO</h2>
            <p class="fp-abstract-particle-hero-background-ui-subtitle">Shaping The Future</p>
        </div>
        
    </div>
</div>
.fp-abstract-particle-hero-background-ui {
    /* Layout & Sizing System */
    --fp-container-width: 100%;
    --fp-max-width: 500px;
    --fp-aspect-ratio: 1 / 1;

    /* Semantic Color System (Putih / Biru Dongker / Biru Permata) */
    --fp-primary-color: #FFFFFF; /* Putih (Base) */
    --fp-secondary-color: #F8FAFC; /* Muted Light Background */
    --fp-muted-color: #64748B; /* Soft Muted Text */
    --fp-soft-color: #0A192F; /* Biru Dongker / Deep Navy */
    --fp-background-color: transparent;

    --fp-info-color: #0F52BA; /* Biru Permata / Deep Sapphire */
    --fp-warning-color: #0F52BA;
    --fp-danger-color: #0F52BA;
    --fp-accent-color: #0F52BA; /* Biru Permata */

    width: var(--fp-container-width);
    max-width: var(--fp-max-width);
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    background-color: var(--fp-background-color);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.fp-abstract-particle-hero-background-ui * {
    box-sizing: border-box;
}

.fp-abstract-particle-hero-background-ui-stage {
    width: 100%;
    aspect-ratio: var(--fp-aspect-ratio);
    background-color: var(--fp-primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 25, 47, 0.05);
    /* Layer 1: Subtle Base Breathing */
    animation: fp-abstract-particle-hero-background-ui-breathe 8s ease-in-out infinite alternate;
}

@keyframes fp-abstract-particle-hero-background-ui-breathe {
    0% { box-shadow: inset 0 0 0 rgba(10, 25, 47, 0); }
    100% { box-shadow: inset 0 0 40px rgba(10, 25, 47, 0.04); }
}

/* Subtle Grid Overlay for Studio Vibe */
.fp-abstract-particle-hero-background-ui-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--fp-muted-color) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: 1;
}

/* Abstract Fluid Gooey Container */
.fp-abstract-particle-hero-background-ui-fluid {
    position: absolute;
    inset: 0;
    z-index: 2;
    filter: url('#fp-abstract-particle-hero-background-ui-goo');
    overflow: hidden;
    pointer-events: none;
}

/* Blob Positioning Container (Controlled by JS) */
.fp-abstract-particle-hero-background-ui-blob-pos {
    position: absolute;
    width: 0;
    height: 0;
    will-change: left, top, transform;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* For Spike */
}

/* Layer 3 Reactive Spike */
.fp-abstract-particle-hero-background-ui-blob-pos.fp-abstract-particle-hero-background-ui-spike {
    transform: scale(1.6);
}

/* Layer 2: Rotational & Morphing Motion (CSS) */
.fp-abstract-particle-hero-background-ui-blob-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Organic border radius for liquid feel */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: 
        fp-abstract-particle-hero-background-ui-morph 8s ease-in-out infinite alternate, 
        fp-abstract-particle-hero-background-ui-spin 12s linear infinite;
}

@keyframes fp-abstract-particle-hero-background-ui-morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes fp-abstract-particle-hero-background-ui-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Individual Blob Specs */
.fp-abstract-particle-hero-background-ui-shape-1 {
    width: 260px; height: 260px;
    background: var(--fp-accent-color); /* Sapphire */
    opacity: 0.9;
}

.fp-abstract-particle-hero-background-ui-shape-2 {
    width: 200px; height: 200px;
    background: var(--fp-soft-color); /* Deep Navy */
    opacity: 0.85;
    animation-duration: 9s, 15s;
    animation-direction: alternate-reverse, reverse;
}

.fp-abstract-particle-hero-background-ui-shape-3 {
    width: 160px; height: 160px;
    background: rgba(15, 82, 186, 0.6); /* Semi-transparent Sapphire */
    animation-duration: 7s, 10s;
}

/* Content Overlay */
.fp-abstract-particle-hero-background-ui-content {
    position: relative;
    z-index: 3;
    text-align: center;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fp-abstract-particle-hero-background-ui-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--fp-primary-color);
    background-color: var(--fp-soft-color);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

.fp-abstract-particle-hero-background-ui-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--fp-soft-color);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.fp-abstract-particle-hero-background-ui-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fp-muted-color);
    margin: 0;
    letter-spacing: 0.05em;
}

/* Responsive Scaling */
@media (max-width: 480px) {
    .fp-abstract-particle-hero-background-ui-shape-1 { width: 160px; height: 160px; }
    .fp-abstract-particle-hero-background-ui-shape-2 { width: 120px; height: 120px; }
    .fp-abstract-particle-hero-background-ui-shape-3 { width: 100px; height: 100px; }
    .fp-abstract-particle-hero-background-ui-title { font-size: 2rem; }
}
(function() {
    const instances = document.querySelectorAll('.fp-abstract-particle-hero-background-ui');

    instances.forEach(root => {
        if (root.dataset.fpInitialized) return;
        root.dataset.fpInitialized = 'true';

        const posEls = root.querySelectorAll('.fp-abstract-particle-hero-background-ui-blob-pos');
        if (!posEls.length) return;

        let rafId;
        let isVisible = true;

        // Visibility State
        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => isVisible = entry.isIntersecting);
        }, { threshold: 0.1 });
        observer.observe(root);

        // Orbit Configurations for each fluid particle
        const configs = [
            { rx: 20, ry: 15, speedX: 0.0004, speedY: 0.0005, ox: 50, oy: 50 },
            { rx: 18, ry: 25, speedX: 0.0006, speedY: 0.0003, ox: 45, oy: 55 },
            { rx: 25, ry: 20, speedX: 0.0003, speedY: 0.0007, ox: 55, oy: 45 }
        ];

        function fp_abstract_particle_hero_background_ui_render(t) {
            // GC Protection
            if (!document.body.contains(root)) {
                observer.disconnect();
                cancelAnimationFrame(rafId);
                return;
            }

            // Pause when out of view
            if (!isVisible || document.visibilityState === 'hidden') {
                rafId = requestAnimationFrame(fp_abstract_particle_hero_background_ui_render);
                return;
            }

            // Layer 3: Reactive Spike (Occasional Organic Surge)
            if (Math.random() < 0.004) {
                const targetIdx = Math.floor(Math.random() * posEls.length);
                const target = posEls[targetIdx];
                
                target.classList.add('fp-abstract-particle-hero-background-ui-spike');
                setTimeout(() => {
                    if (target) target.classList.remove('fp-abstract-particle-hero-background-ui-spike');
                }, 600); 
            }

            // Apply dynamic JS orbital positioning
            posEls.forEach((el, i) => {
                const c = configs[i];
                const x = c.ox + Math.sin(t * c.speedX) * c.rx;
                const y = c.oy + Math.cos(t * c.speedY) * c.ry;
                el.style.left = `${x}%`;
                el.style.top = `${y}%`;
            });

            rafId = requestAnimationFrame(fp_abstract_particle_hero_background_ui_render);
        }

        rafId = requestAnimationFrame(fp_abstract_particle_hero_background_ui_render);
    });
})();
Created by Digital Market Created: Apr 26, 2026 • Updated: Apr 26, 2026

Description

Let us look at the Abstract Particle Hero Deep Sapphire Fluid component. This free UI asset offers a modular card system specifically engineered for creative agencies and digital design studios. We built this entirely from scratch to handle rich interactive media without the usual framework bloat. You get a sterile DOM structure that integrates cleanly into your existing agency portfolio architecture.

Creative agency platforms often suffer from heavy client side payloads filled with complex animation libraries. These massive javascript bundles completely ruin performance metrics when users visit your site. This component solves that bottleneck directly. By strictly avoiding external libraries like Tailwind, Bootstrap, or GSAP, it keeps your overall digital footprint minimal. This ensures rapid rendering for art directors and potential clients who need to review high resolution project assets on varying network connections.

Technical Architecture & Performance

  • Zero dependency codebase: Built strictly with pure HTML, CSS, and Vanilla JavaScript to keep your front end stack incredibly light.

  • Guaranteed performance metrics: Optimized to help your portfolio site maintain 90 plus PageSpeed scores and pass Core Web Vitals easily.

  • Safely scoped CSS: All styling is strictly scoped to prevent any class name collisions when you drop these cards into a massive monolithic repository.

  • Sterile DOM markup: Features clean HTML with absolutely no unnecessary wrappers or deep nesting trees to parse.

Design & Aesthetic Impact

The visual direction pairs rich Deep Sapphire tones with a fluid layout to capture user attention immediately. This dark and artistic approach establishes a premium aesthetic that ensures visual clarity for vivid project thumbnails and typography. For the interaction layer, we implemented custom morphing SVG shapes. These organic transitions provide dynamic hover states and smooth layout shifts without requiring heavy animation scripts. The final result is a highly polished user interface that looks sophisticated and functions perfectly for high end creative studios.

Enterprise Use Cases

  • Interactive studio portfolios: Display high resolution case studies and project galleries using the card grid so creative directors can present their best work quickly.

  • Digital design service portals: Build a fast rendering capabilities page where agencies can organize and detail different design subscription tiers within a lightweight interface.

  • Client pitch presentations: Create a responsive presentation panel for account managers to showcase branding concepts and mood boards across secure client networks.

Technical Details

  • ElementCards
  • IndustryStudio
  • StyleAbstract Fluid, Liquid
  • AnimationMorphing
  • ColorBlack, Blue
Report Issue

Highlights & Benefits

Copy-Paste Ready

Drop the code straight into your project without configuration.

Zero Dependencies

Built strictly with pure CSS & Vanilla JS for maximum speed.

ADA & WCAG Ready

Constructed with strict adherence to WCAG accessibility standards for perfect contrast and screen-reader support.

Sterile DOM Structure

Utilizes a highly optimized, clean DOM architecture ensuring lightning-fast render and maximum PageSpeed scores.

You need an active subscription or purchase to leave a review for this premium component.

Abstract Particle Hero – Deep Sapphire Fluid

Category:

Description

Let us look at the Abstract Particle Hero Deep Sapphire Fluid component. This free UI asset offers a modular card system specifically engineered for creative agencies and digital design studios. We built this entirely from scratch to handle rich interactive media without the usual framework bloat. You get a sterile DOM structure that integrates cleanly into your existing agency portfolio architecture.

Creative agency platforms often suffer from heavy client side payloads filled with complex animation libraries. These massive javascript bundles completely ruin performance metrics when users visit your site. This component solves that bottleneck directly. By strictly avoiding external libraries like Tailwind, Bootstrap, or GSAP, it keeps your overall digital footprint minimal. This ensures rapid rendering for art directors and potential clients who need to review high resolution project assets on varying network connections.

Technical Architecture & Performance

  • Zero dependency codebase: Built strictly with pure HTML, CSS, and Vanilla JavaScript to keep your front end stack incredibly light.

  • Guaranteed performance metrics: Optimized to help your portfolio site maintain 90 plus PageSpeed scores and pass Core Web Vitals easily.

  • Safely scoped CSS: All styling is strictly scoped to prevent any class name collisions when you drop these cards into a massive monolithic repository.

  • Sterile DOM markup: Features clean HTML with absolutely no unnecessary wrappers or deep nesting trees to parse.

Design & Aesthetic Impact

The visual direction pairs rich Deep Sapphire tones with a fluid layout to capture user attention immediately. This dark and artistic approach establishes a premium aesthetic that ensures visual clarity for vivid project thumbnails and typography. For the interaction layer, we implemented custom morphing SVG shapes. These organic transitions provide dynamic hover states and smooth layout shifts without requiring heavy animation scripts. The final result is a highly polished user interface that looks sophisticated and functions perfectly for high end creative studios.

Enterprise Use Cases

  • Interactive studio portfolios: Display high resolution case studies and project galleries using the card grid so creative directors can present their best work quickly.

  • Digital design service portals: Build a fast rendering capabilities page where agencies can organize and detail different design subscription tiers within a lightweight interface.

  • Client pitch presentations: Create a responsive presentation panel for account managers to showcase branding concepts and mood boards across secure client networks.