2017-12-18 280 views
-2

嗨我想在某些特定的部分添加一個類。模糊圖像。如何在滾動的特定部分添加一個類

參考:https://www.stanford.edu/。我想在用戶滾動到某個部分時模糊圖像。

+0

歡迎來到StackOverflow!請參閱[問]和[mcve]。 – Tushar

+0

重複此:https://stackoverflow.com/questions/12558311/add-remove-class-with-jquery-based-on-vertical-scroll – 2017-12-18 11:37:42

+0

沒有我想要找到該部分滾動時滾動是在該部分我想添加一個類到該部分,以便我可以模糊圖像。 – user3591872

回答

0

您想添加課程時,您的DIV您想要模糊的圖像位於頁面頂部或某個特定位置。

您必須獲得您的DIV的動態滾動頂部(使圖像模糊)。或者你可以說在jQuery術語偏移量。

var YourDiv = $(".YourDivHavingImageToBeBlur"); 
    $(window).scroll(function() { 
     var scroll = $(window).scrollTop(); 
     // Here You can add your conditions according to your requirments 
     if (scroll == YourDiv.offset().top) { 
      YourDiv.addClass('YourClass'); 
     } 
    }); 
+0

dua kar skta hun bhai pher –

+0

感謝它的工作 – user3591872

+0

sahi bata bhai chal gea? –

相關問題