VBC-131: video-background
warningCategory: ux-dx
Analysis: Regex (whole file)
File types: .html, .js, .ts, .tsx, .astro
Scope: source code only, ignoring anything inside strings and comments
Tags: ux
What it reports
Autoplay video backgrounds can be distracting and impact performance.
Flagged
html
<video autoplay loop muted src="bg.mp4"></video>Not flagged
html
<video controls src="talk.mp4"></video>Pattern
regex
<video\b(?=[^>]*\bautoplay\b)(?=[^>]*\bloop\b)(?=[^>]*\bmuted\b)[^>]*>