3 - 0
Verbandsliga
2025/26
BSA Burgwall

BSV vs LTS

0 - 4
Verbandsliga
2025/26
BSA Blockdiek

SCVB vs BSV

1 - 4
Verbandsliga
2025/26
SPA Fritzewiese

TVEH vs BSV

21 - 0
Verbandsliga
2025/26
BSA Burgwall

BSV vs ATSB

Abgesagt
Bezirksfreundschaftsspiele
2025/26
SC Vorwärts-Wacker 04

SCVW04 vs BSV

0 - 13
Bezirkspokal
2025/26
SPA Stadtwerder

ATSB vs BSV

1 - 3
Verbandsliga
2025/26
SPA Sebaldsbrück

ATSV vs BSV

4 - 1
Verbandsliga
2025/26
BSA Burgwall

BSV vs BrSV

1 - 3
Verbandsliga
2025/26
BSA Rollsportstadion

FCU vs BSV

6 - 1
Verbandsliga
2025/26
BSA Burgwall

BSV vs SVW

0 - 2
Verbandsliga
2025/26
SPA Borgfeld

SCB vs BSV

0 - 6
Verbandsliga
2025/26
SPA SC Lehe-Spaden

SCLS vs BSV

2 - 6
Verbandsliga
2025/26
SPA Brinkum

SVB vs BSV

23 - 1
Bezirkspokal
2025/26
BSA Burgwall

BSV vs TuSS

0 - 20
Kreisfreundschaftsspiele
2025/26
Achim

JSGAU vs BSV

const targetEl = document.querySelector('body.single-post .page_content_wrap') || document.querySelector('body.custom-background .page_content_wrap') || document.querySelector('body.single-sp_event .page_content_wrap') || document.querySelector('body.single-sp_team .page_content_wrap') || document.querySelector('body.single-sp_player .page_content_wrap') || document.querySelector('body.post-type-archive-sp_event .page_content_wrap') || document.querySelector('body.post-type-archive-sp_team .page_content_wrap') || document.querySelector('body.post-type-archive-sp_player .page_content_wrap') || document.querySelector('body.single-sp_calendar .page_content_wrap') || document.querySelector('body.post-type-archive-sp_calendar .page_content_wrap') || body; // Parallax-Konfiguration const speed = 0.30; // Typischer Bereich: 0.20–0.40 const getOffset = () => window.pageYOffset || document.documentElement.scrollTop || 0; let ticking = false; const update = () => { const yOffset = -(getOffset() * speed); // nur Y-Position verschieben targetEl.style.backgroundPosition = `center ${yOffset}px`; ticking = false; }; const requestTick = () => { if (!ticking) { requestAnimationFrame(update); ticking = true; } }; // Scroll-Events (passiv für Performance) window.addEventListener('scroll', requestTick, { passive: true }); window.addEventListener('resize', requestTick, { passive: true }); // Initiale Position setzen update(); console.log("💻 Parallax aktiviert auf Desktop/Tablet (Target:", targetEl, ")"); });