9 lines
295 B
JavaScript
9 lines
295 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
var h1 = document.querySelector('.user-index-h1');
|
|
var h2 = document.querySelector('.user-index-h2');
|
|
|
|
// Add the fade-in class to trigger the animation
|
|
h1.classList.add('fade-in');
|
|
h2.classList.add('fade-in');
|
|
});
|