Answers for "set scroll height in css style"

CSS
1

scrollbar height css

::-webkit-scrollbar-button {
  height: 12px;
}
Posted by: Guest on May-25-2021
0

change height of div with scroll in javascript

$(window).on('scroll', function () {
    var scrollTop = $(window).scrollTop();
    if (scrollTop > 50) {
        $('#header_parent').stop().animate({height: "30px"},200);
    }
    else {
         $('#header_parent').stop().animate({height: "50px"},200);   
    }
});
Posted by: Guest on February-18-2021

Browse Popular Code Answers by Language