Retro Vector Tearing
🟢 CSS OnlySharp geometric lines forming a structural grid that is periodically torn and warped by digital static interference.
Responsive Horizontal Leaderboard
Slot ID: ca-pub-detail-below-preview
Interactive Settings
Medium Rectangle Block
Slot ID: ca-pub-detail-after-customization
Quick Copy Actions
Download File Packages
Keyboard Shortcuts
Responsive Horizontal Leaderboard
Slot ID: ca-pub-detail-before-related
More in Retro
Loading Canvas Shader...
VHS Chromatic Aberration
A nostalgic analog VHS videotape experience with chromatic aberration, horizontal tracking distortions, and rolling noise lines.
Loading Canvas Shader...
Cyberpunk Matrix Glitch
A raining matrix grid overlaid with heavy chromatic aberration and periodic digital tear-glitch triggers.
Loading Canvas Shader...
Retro Neon Grid Flicker
A clean scrolling neon grid featuring a nostalgic color overlay and gentle VHS-style horizontal glitch lines.
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); }
}