Add background pattern and smooth scrolling effect to welcome page
This commit is contained in:
@@ -14,3 +14,15 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
parent: '.grid' // dit moet de container zijn waarin sticky moet blijven
|
||||
});
|
||||
});
|
||||
|
||||
const cursor = document.getElementById('custom-cursor');
|
||||
|
||||
document.addEventListener('mousemove', (e) => {
|
||||
gsap.to(cursor, {
|
||||
duration: 0.2,
|
||||
x: e.clientX + 20,
|
||||
y: e.clientY - 15,
|
||||
ease: 'power2.out'
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user