https://motioncanvas.online/preview/retro-vector-tearing
Scroll Down

Loading Canvas Shader...

Next-Gen Scroll Mechanics

Experience Beautiful Ambient Depth

This browser window is simulating a production webpage. As you scroll down, the ambient Retro Vector Tearing background dynamically zooms and pulls focus in real-time, creating beautiful, cinematic parallax depth.

Built for Ultra Performance

Modern web layouts require buttery-smooth animations. Our styles run completely on the GPU, avoiding CPU reflow and main-thread layout jank.

Focus Pull Parallax

Scroll depth controls blur intensity and lens scaling simultaneously to guide focus elegantly.

GPU-Accelerated

Uses hardware transforms and native filters, optimized for stable 120fps scrolling.

Highly Customizable

Adjust speed, maximum blur limit, zoom multipliers, and filters in real-time.

© 2026 MOTIONCANVAS. ALL RIGHTS RESERVED.ACTIVE BACKGROUND: RETRO VECTOR TEARING

Retro Vector Tearing

🟢 CSS Only

Sharp geometric lines forming a structural grid that is periodically torn and warped by digital static interference.

#retro#vector#glitch#geometry#cyber
Advertisement
Sponsor Advertisement
728 × 90 | Responsive Banner

Responsive Horizontal Leaderboard

Slot ID: ca-pub-detail-below-preview

Google AdSense Placeholder

Interactive Settings

Motion PresetsCustom Tuning
Animation Speed1.0x
Blur (Aesthetic diffusion)0px
Layer Opacity100%
Scale Zoom1.0x
Rotation Angle0°
#ff0055
#00ffcc
Advertisement
Sponsor Advertisement
300 × 250 | Rectangle

Medium Rectangle Block

Slot ID: ca-pub-detail-after-customization

Google AdSense Placeholder

Quick Copy Actions

Download File Packages

Keyboard Shortcuts

Space Play/Pause
F Fullscreen
R Reset Slider
C Copy Code
Advertisement
Sponsor Advertisement
728 × 90 | Responsive Banner

Responsive Horizontal Leaderboard

Slot ID: ca-pub-detail-before-related

Google AdSense Placeholder

More in Retro

Retro Vector Tearing - CSS-only Retro background for React & Tailwind

Integrate the Retro Vector Tearing directly into your website. This asset is rendered using pure CSS and HTML keyframes. It is optimized for zero layout-shifts and runs with high-performance hardware-accelerated processing.

Performance Specifications

  • Render Mode: CSS-ONLY (CSS-only)
  • Fluidity: Locked at 60fps dynamic loop
  • Bundle Footprint: Zero external NPM dependencies
  • SEO Indexing status: 100% Crawlable static semantic HTML

🛠️ Integration Capabilities

Our templates expose inline design tokens like --color-1 and --color-2 for infinite color palettes. This template is designed to fit inside hero elements, full-screen landing pages, and interactive presentation cards.

Technical Code Reference & Syntaxes for Googlebot & Crawlers

The snippets below display the direct, unminified source code utilized for rendering this background.

HTML & Inline CSS Snippet (Vanilla)

<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Retro Vector Tearing</title>
  <style>
    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: #09090b;
    }
    
    :root {
      --color-1: #ff0055;
      --color-2: #00ffcc;
      --color-bg: #080512;
    }
    .vector-grid-box {
      position: relative;
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      overflow: hidden;
    }
    .vector-back-grid {
      position: absolute;
      inset: -10%;
      background-image: 
        linear-gradient(to right, rgba(124, 92, 255, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(124, 92, 255, 0.12) 1px, transparent 1px);
      background-size: 50px 50px;
      transform: rotate(5deg);
      animation: vector-drift 20s infinite ease-in-out alternate;
    }
    .static-wave {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
      );
      animation: static-sweep 8s infinite linear;
    }
    .split-color-box {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      height: 60%;
      border: 1px solid rgba(255, 0, 85, 0.4);
      background: rgba(124, 92, 255, 0.03);
      box-shadow: 0 0 30px rgba(0, 255, 204, 0.05);
      animation: border-tear 6s infinite steps(1);
    }
    @keyframes vector-drift {
      0% { transform: rotate(5deg) translate(0, 0) scale(1); }
      50% { transform: rotate(8deg) translate(15px, -10px) scale(1.05); }
      100% { transform: rotate(3deg) translate(-10px, 15px) scale(0.98); }
    }
    @keyframes static-sweep {
      0% { background-position: 0 0; }
      100% { background-position: 0 200px; }
    }
    @keyframes border-tear {
      0%, 94%, 100% { transform: translate(-50%, -50%) skewX(0); border-color: rgba(255, 0, 85, 0.4); }
      95% { transform: translate(-48%, -50%) skewX(8deg); border-color: #00ffcc; filter: hue-rotate(45deg); }
      96% { transform: translate(-52%, -50%) skewX(-8deg); border-color: #ff0055; filter: hue-rotate(-45deg); }
      97% { transform: translate(-50%, -52%) scaleY(1.05); border-color: rgba(255, 0, 85, 0.4); }
    }
  </style>
</head>
<body>

  <div class="vector-grid-box">
    <div class="vector-back-grid"></div>
    <div class="static-wave"></div>
    <div class="split-color-box"></div>
  </div>

  
</body>
</html>

React Component Wrapper (TSX)

import React from 'react';

export default function RetroVectorTearingBackground() {
  

  return (
    <div 
       
      style={{ width: '100%', height: '100%', position: 'relative', overflow: 'hidden' }}
    >
      <style dangerouslySetInnerHTML={{ __html: `
        :root {
          --color-1: #ff0055;
          --color-2: #00ffcc;
          --color-bg: #080512;
        }
        .vector-grid-box {
          position: relative;
          width: 100%;
          height: 100%;
          background: var(--color-bg);
          overflow: hidden;
        }
        .vector-back-grid {
          position: absolute;
          inset: -10%;
          background-image: 
            linear-gradient(to right, rgba(124, 92, 255, 0.12) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(124, 92, 255, 0.12) 1px, transparent 1px);
          background-size: 50px 50px;
          transform: rotate(5deg);
          animation: vector-drift 20s infinite ease-in-out alternate;
        }
        .static-wave {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 10px
          );
          animation: static-sweep 8s infinite linear;
        }
        .split-color-box {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 60%;
          height: 60%;
          border: 1px solid rgba(255, 0, 85, 0.4);
          background: rgba(124, 92, 255, 0.03);
          box-shadow: 0 0 30px rgba(0, 255, 204, 0.05);
          animation: border-tear 6s infinite steps(1);
        }
        @keyframes vector-drift {
          0% { transform: rotate(5deg) translate(0, 0) scale(1); }
          50% { transform: rotate(8deg) translate(15px, -10px) scale(1.05); }
          100% { transform: rotate(3deg) translate(-10px, 15px) scale(0.98); }
        }
        @keyframes static-sweep {
          0% { background-position: 0 0; }
          100% { background-position: 0 200px; }
        }
        @keyframes border-tear {
          0%, 94%, 100% { transform: translate(-50%, -50%) skewX(0); border-color: rgba(255, 0, 85, 0.4); }
          95% { transform: translate(-48%, -50%) skewX(8deg); border-color: #00ffcc; filter: hue-rotate(45deg); }
          96% { transform: translate(-52%, -50%) skewX(-8deg); border-color: #ff0055; filter: hue-rotate(-45deg); }
          97% { transform: translate(-50%, -52%) scaleY(1.05); border-color: rgba(255, 0, 85, 0.4); }
        }
      ` }} />
      
      {/* HTML Structure */}
      <div 
        style={{ width: '100%', height: '100%' }}
        dangerouslySetInnerHTML={{ __html: `
          <div class="vector-grid-box">
            <div class="vector-back-grid"></div>
            <div class="static-wave"></div>
            <div class="split-color-box"></div>
          </div>
        ` }}
      />
    </div>
  );
}

Next.js App Router Component (use client)

'use client';

import React from 'react';

export default function RetroVectorTearingBackground() {
  

  return (
    <div 
       
      className="w-full h-full relative overflow-hidden"
    >
      <style dangerouslySetInnerHTML={{ __html: `
        :root {
          --color-1: #ff0055;
          --color-2: #00ffcc;
          --color-bg: #080512;
        }
        .vector-grid-box {
          position: relative;
          width: 100%;
          height: 100%;
          background: var(--color-bg);
          overflow: hidden;
        }
        .vector-back-grid {
          position: absolute;
          inset: -10%;
          background-image: 
            linear-gradient(to right, rgba(124, 92, 255, 0.12) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(124, 92, 255, 0.12) 1px, transparent 1px);
          background-size: 50px 50px;
          transform: rotate(5deg);
          animation: vector-drift 20s infinite ease-in-out alternate;
        }
        .static-wave {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 10px
          );
          animation: static-sweep 8s infinite linear;
        }
        .split-color-box {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 60%;
          height: 60%;
          border: 1px solid rgba(255, 0, 85, 0.4);
          background: rgba(124, 92, 255, 0.03);
          box-shadow: 0 0 30px rgba(0, 255, 204, 0.05);
          animation: border-tear 6s infinite steps(1);
        }
        @keyframes vector-drift {
          0% { transform: rotate(5deg) translate(0, 0) scale(1); }
          50% { transform: rotate(8deg) translate(15px, -10px) scale(1.05); }
          100% { transform: rotate(3deg) translate(-10px, 15px) scale(0.98); }
        }
        @keyframes static-sweep {
          0% { background-position: 0 0; }
          100% { background-position: 0 200px; }
        }
        @keyframes border-tear {
          0%, 94%, 100% { transform: translate(-50%, -50%) skewX(0); border-color: rgba(255, 0, 85, 0.4); }
          95% { transform: translate(-48%, -50%) skewX(8deg); border-color: #00ffcc; filter: hue-rotate(45deg); }
          96% { transform: translate(-52%, -50%) skewX(-8deg); border-color: #ff0055; filter: hue-rotate(-45deg); }
          97% { transform: translate(-50%, -52%) scaleY(1.05); border-color: rgba(255, 0, 85, 0.4); }
        }
      ` }} />
      
      {/* HTML Structure */}
      <div 
        className="w-full h-full"
        dangerouslySetInnerHTML={{ __html: `
          <div class="vector-grid-box">
            <div class="vector-back-grid"></div>
            <div class="static-wave"></div>
            <div class="split-color-box"></div>
          </div>
        ` }}
      />
    </div>
  );
}

Raw CSS Stylesheet Snippet

:root {
  --color-1: #ff0055;
  --color-2: #00ffcc;
  --color-bg: #080512;
}
.vector-grid-box {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  overflow: hidden;
}
.vector-back-grid {
  position: absolute;
  inset: -10%;
  background-image: 
    linear-gradient(to right, rgba(124, 92, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 255, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(5deg);
  animation: vector-drift 20s infinite ease-in-out alternate;
}
.static-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  animation: static-sweep 8s infinite linear;
}
.split-color-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 1px solid rgba(255, 0, 85, 0.4);
  background: rgba(124, 92, 255, 0.03);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.05);
  animation: border-tear 6s infinite steps(1);
}
@keyframes vector-drift {
  0% { transform: rotate(5deg) translate(0, 0) scale(1); }
  50% { transform: rotate(8deg) translate(15px, -10px) scale(1.05); }
  100% { transform: rotate(3deg) translate(-10px, 15px) scale(0.98); }
}
@keyframes static-sweep {
  0% { background-position: 0 0; }
  100% { background-position: 0 200px; }
}
@keyframes border-tear {
  0%, 94%, 100% { transform: translate(-50%, -50%) skewX(0); border-color: rgba(255, 0, 85, 0.4); }
  95% { transform: translate(-48%, -50%) skewX(8deg); border-color: #00ffcc; filter: hue-rotate(45deg); }
  96% { transform: translate(-52%, -50%) skewX(-8deg); border-color: #ff0055; filter: hue-rotate(-45deg); }
  97% { transform: translate(-50%, -52%) scaleY(1.05); border-color: rgba(255, 0, 85, 0.4); }
}