jquery: How can I reset the document scrollbar when I append a layer over the document?

后端 未结 1 2052
不知归路
不知归路 2021-01-26 14:10

How can I reset the document scrollbar when I append a layer over the document?

For instance, it is like the facebook page when you have a very long document and you nee

相关标签:
1条回答
  • 2021-01-26 15:00

    Facebook use the css property: overflow

    The image container has the following css properties:

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: scroll;
    

    This will create the effect you are seeking.

    0 讨论(0)
提交回复
热议问题