關於css position和scroll事件的一些理解

來源:互聯網
上載者:User

  昨天在做拾色器開發的時候,由於要將失色器定位到一個彈出框中。所以我使用了position:absolute屬性。擷取點擊元素的位置。我擷取它的位置的方法是使用$(this).offset().left,$(this).offset().top。因為absoulte是相對頁面進行定位的。所以我在彈出框內的捲軸滾動的時候它不會跟著滾動。當時我想到的解決辦法就是使用一個方法來擷取scroll是向上滾動還是向下滾動。

  使用的辦法就是使用$("div").scroll()。擷取它的scrollTop的值和上一次滾動的值進行比較來比較大小,從而判斷是向上還是向下滾動。

      不過我後來想到更方便的解決方案,就是不使用absolute定位。直接將元素插入到最底層,然後使用margin-left和margin-right來進行定位。個人感覺這個是最好的辦法。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.