スクロール時に、ある div スタックを別の div スタックに重ねようとしています。現在、2 番目の div の不透明度は 0 に設定されており、2 番目の div の下部に到達すると、不透明度は 1 になります。スクロールが div の上部に到達したときに不透明度が 1 になるように調整するにはどうすればよいですか?
$(document).ready(function() {
/* Every time the window is scrolled ... */
$(window).scroll( function(){
/* Check the location of each desired element */
$('#thrillercontainer').each( function(i){
var bottom_of_object = $(this).position().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();
/* If the object is completely visible in the window, fade it it */
if( bottom_of_window > bottom_of_object ){
$(this).animate({'opacity':'1'},100);
$('#horrorcontainer').slideUp(100);
}