🎯
Scroll Animation for Wix Sites
Wix supports HTML embed widgets in the editor. Paste the ScrollerSites snippet to add Apple-style scroll animation to any Wix page.
Manual Implementation
38 lines// Manual scroll animation on Wix — 47+ lines before mobile
const canvas = document.getElementById('scroll-canvas');
const ctx = canvas.getContext('2d');
const frames = [];
let currentFrame = 0;
async function preloadFrames(count) {
await Promise.all(Array.from({ length: count }, (_, i) => {
const img = new Image();
const padded = String(i).padStart(4, '0');
img.src = `https://your-cdn.com/frames/frame-${padded}.jpg`;
frames.push(img);
return new Promise((r) => { img.onload = r; img.onerror = r; });
}));
}
function drawFrame(index) {
if (!frames[index]) return;
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.drawImage(frames[index], 0, 0, canvas.width, canvas.height);
}
window.addEventListener('scroll', () => {
const rect = canvas.parentElement.getBoundingClientRect();
const scrolled = -rect.top;
const total = rect.height - window.innerHeight;
const progress = Math.max(0, Math.min(1, scrolled / total));
const frameIndex = Math.floor(progress * (frames.length - 1));
if (frameIndex !== currentFrame) {
currentFrame = frameIndex;
requestAnimationFrame(() => drawFrame(currentFrame));
}
}, { passive: true });
// Still needed: resize handler, mobile touch events,
// Safari canvas fix, Wix Velo injection,
// CDN setup for 120+ JPEG files, lazy loading...
preloadFrames(120).then(() => drawFrame(0)); Done For You — ScrollerSites
<!-- Paste into a Wix HTML embed widget -->
<div data-scrollersite="YOUR_PROJECT_ID"></div>
<script src="https://cdn.scrollersites.com/embed/v1/player.js" defer></script>Adding Scroll Animation to Wix
In the Wix editor, drag an "Embed HTML" element onto any page and paste the ScrollerSites snippet. Resize the widget to fill the section. Publish.
- ● Use the Embed HTML widget in the Wix editor
- ● Resize to full-width for a hero scroll animation
Ready to Add Scroll Animation?
Add scroll animation to Wix without writing a single line of Velo code.
Get Started Free →Related Platform Guides
🛒
E-commerce
Scroll Animation for Wix Stores
Add scroll-driven animation to your Wix Stores site using the HTML embed widget. No code, no plugin.
⬛
CMS & Website Builders
Scroll Animation for Squarespace: Beyond the Built-In Effects
Squarespace has limited scroll animation options. Add Apple-style scroll-driven animation using the Code Block and the ScrollerSites embed.