2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/theme/static/scripts/fade.js

4 lines
100 B
JavaScript
Raw Normal View History

2019-08-22 00:13:11 +02:00
$(window).scroll(function(){
$(".brand").css("opacity", 0 + $(window).scrollTop() / 100);
});