以下の関数は、ウィンドウの高さをウィンドウの高さで割って、ユーザーがスクロールした距離を計算します。そのパーセンテージが増加するにつれて、私はcss'height'量のdiv'arrow'を増加させたいと思います。私は何が間違っているのですか?
$(document).scroll(function(){
// grab the scroll amount and the window height
var scrollAmount = $(window).scrollTop();
var documentHeight = $(document).height();
// calculate the percentage the user has scrolled down the page
var scrollPercent = (scrollAmount / documentHeight) * 100;
function increaseHeight() {
$(".arrow").css({
height: scrollPercent + 'px'
});
//do something when a user gets 50% of the way down my page
});