mirror of
https://github.com/Rushilwiz/mooreyoga.git
synced 2025-04-09 22:30:16 -04:00
4 lines
160 B
JavaScript
4 lines
160 B
JavaScript
$(window).scroll(() => {
|
|
let percent = $(document).scrollTop() / ($(document).height() - $(window).height());
|
|
$('.text').css('opacity', .9 - percent)
|
|
}) |