简体   繁体   中英

Set the position of div according to scroll

I want a div to be scroll upto some height with scrolling.

I am using this code bt its not working for me,please help me out to solve this problem using javascript or css i can't use jquery in my programm thanks in advance

 element.style.position='fixed';
 element.style.scrollTop ='800px';
 element.style.overflow='scroll';

 function Scroll()
  {
    var intY = document.getElementById("impulseadcontainer").scrollTop ;
    console.log("pos"+intY);
  }

You have to assign something to the scrollTop attribute in order for it to work.

function scroll() {
    document.getElementById("impulseadcontainer").scrollTop = 0; // scrolls to top (set here whatever value you want)
}

You can do this with the following javascript code.

document.scrollTo(0,document.getElementById('id-of-element').offsetTop);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM