mooreyoga/site/js/app.js

4 lines
160 B
JavaScript

$(window).scroll(() => {
let percent = $(document).scrollTop() / ($(document).height() - $(window).height());
$('.text').css('opacity', .9 - percent)
})