Javascript 向下滚动时淡入,向上滚动时淡出 - 基于窗口中的元素位置

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/26694385/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-22 23:14:38  来源:igfitidea点击:

Fade In on Scroll Down, Fade Out on Scroll Up - based on element position in window

javascriptjqueryscrollfade

提问by minimographite

I'm trying to get a series of elements to fade in on scroll down when they are fully visible in the window. If I keep scrolling down, I do not want them to fade out, but if I scroll up, I do want them to fade out.

当它们在窗口中完全可见时,我试图让一系列元素在向下滚动时淡入。如果我继续向下滚动,我不希望它们淡出,但如果我向上滚动,我确实希望它们淡出。

This is the closest jsfiddle I've found. http://jsfiddle.net/tcloninger/e5qaD/

这是我找到的最接近的 jsfiddle。 http://jsfiddle.net/tcloninger/e5qaD/

$(document).ready(function() {

/* Every time the window is scrolled ... */
$(window).scroll( function(){

    /* Check the location of each desired element */
    $('.hideme').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'},500);

        }    
    }); 
}); 
});

It does exactly what I want on scroll down, but I also want the elements to fade out if I scroll up past them.

它在向下滚动时完全符合我的要求,但我也希望元素在我向上滚动时淡出它们。

I tried this with no luck.

我没有运气就试过这个。

            if( bottom_of_window > bottom_of_object ){

                $(this).animate({'opacity':'1'},500);  

            } else {

               $(this).animate({'opacity':'0'},500); }

Thanks so much for taking the time to look at this.

非常感谢您花时间看这个。

回答by myfunkyside

The reason your attempt wasn't working, is because the two animations (fade-in and fade-out) were working against each other.

您的尝试无效的原因是因为两个动画(淡入和淡出)相互对抗。

Right before an object became visible, it was still invisible and so the animation for fading-out would run. Then, the fraction of a second later when that same object had become visible, the fade-in animation would try to run, but the fade-out was still running. So they would work against each other and you would see nothing.

就在对象变得可见之前,它仍然不可见,因此淡出动画会运行。然后,在同一对象变得可见的几分之一秒后,淡入动画将尝试运行,但淡出仍在运行。所以他们会互相对抗,你什么也看不到。

Eventually the object would become visible (most of the time), but it would take a while. And if you would scroll down by using the arrow-button at the button of the scrollbar, the animation would sort of work, because you would scroll using bigger increments, creating less scroll-events.

最终对象将变得可见(大部分时间),但这需要一段时间。如果您使用滚动条按钮上的箭头按钮向下滚动,动画就会起作用,因为您将使用更大的增量滚动,从而减少滚动事件。



Enough explanation, the solution (JS, CSS, HTML):

解释够了,解决方案(JS、CSS、HTML):

$(window).on("load",function() {
  $(window).scroll(function() {
    var windowBottom = $(this).scrollTop() + $(this).innerHeight();
    $(".fade").each(function() {
      /* Check the location of each desired element */
      var objectBottom = $(this).offset().top + $(this).outerHeight();
      
      /* If the element is completely within bounds of the window, fade it in */
      if (objectBottom < windowBottom) { //object comes into view (scrolling down)
        if ($(this).css("opacity")==0) {$(this).fadeTo(500,1);}
      } else { //object goes out of view (scrolling up)
        if ($(this).css("opacity")==1) {$(this).fadeTo(500,0);}
      }
    });
  }).scroll(); //invoke scroll-handler on page-load
});
.fade {
  margin: 50px;
  padding: 50px;
  background-color: lightgreen;
  opacity: 1;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<div>
  <div class="fade">Fade In 01</div>
  <div class="fade">Fade In 02</div>
  <div class="fade">Fade In 03</div>
  <div class="fade">Fade In 04</div>
  <div class="fade">Fade In 05</div>
  <div class="fade">Fade In 06</div>
  <div class="fade">Fade In 07</div>
  <div class="fade">Fade In 08</div>
  <div class="fade">Fade In 09</div>
  <div class="fade">Fade In 10</div>
</div>
(fiddle: http://jsfiddle.net/eLwex993/2/小提琴:http: //jsfiddle.net/eLwex993/2/

  • I wrapped the fade-codeline in an if-clause: if ($(this).css("opacity")==0) {...}. This makes sure the object is only faded in when the opacityis 0. Same goes for fading out. And this prevents the fade-in and fade-out from working against each other, because now there's ever only one of the two running at one time on an object.
  • I changed .animate()to .fadeTo(). It's jQuery's specialized function for opacity, a lot shorter to write and probably lighter than animate.
  • I changed .position()to .offset(). This always calculates relative to the body, whereas position is relative to the parent. For your case I believe offset is the way to go.
  • I changed $(window).height()to $(window).innerHeight(). The latter is more reliable in my experience.
  • Directly after the scroll-handler, I invoke that handler once on page-load with $(window).scroll();. Now you can give all desired objects on the page the .fadeclass, and objects that should be invisible at page-load, will be faded out immediately.
  • I removed #containerfrom both HTML and CSS, because (at least for this answer) it isn't necessary. (I thought maybe you needed the height:2000pxbecause you used .position()instead of .offset(), otherwise I don't know. Feel free of course to leave it in your code.)
  • 我裹着淡入代码行的如果子句中:if ($(this).css("opacity")==0) {...}。这确保对象仅在opacityis时淡入0。淡出也一样。这可以防止淡入和淡出相互影响,因为现在在一个对象上一次只有两者中的一个运行。
  • 我换.animate().fadeTo()。它是 jQuery 专门用于不透明度的函数,编写起来要短得多,而且可能比动画更轻。
  • 我换.position().offset()。这总是相对于身体计算,而位置是相对于父级的。对于你的情况,我相信抵消是要走的路。
  • 我换$(window).height()$(window).innerHeight()。根据我的经验,后者更可靠。
  • 直接在滚动处理程序之后,我在页面加载时调用该处理程序一次$(window).scroll();。现在您可以为页面上所有需要的对象提供.fade类,并且在页面加载时不可见的对象将立即淡出。
  • #container从 HTML 和 CSS 中删除,因为(至少对于这个答案)它不是必需的。(我想也许您需要 ,height:2000px因为您使用了.position()而不是.offset(),否则我不知道。当然可以将它留在您的代码中。)


UPDATE

更新

If you want opacity values other than 0and 1, use the following code:

如果您想要0和以外的不透明度值1,请使用以下代码:

$(window).on("load",function() {
  function fade(pageLoad) {
    var windowBottom = $(window).scrollTop() + $(window).innerHeight();
    var min = 0.3;
    var max = 0.7;
    var threshold = 0.01;
    
    $(".fade").each(function() {
      /* Check the location of each desired element */
      var objectBottom = $(this).offset().top + $(this).outerHeight();
      
      /* If the element is completely within bounds of the window, fade it in */
      if (objectBottom < windowBottom) { //object comes into view (scrolling down)
        if ($(this).css("opacity")<=min+threshold || pageLoad) {$(this).fadeTo(500,max);}
      } else { //object goes out of view (scrolling up)
        if ($(this).css("opacity")>=max-threshold || pageLoad) {$(this).fadeTo(500,min);}
      }
    });
  } fade(true); //fade elements on page-load
  $(window).scroll(function(){fade(false);}); //fade elements on scroll
});
.fade {
  margin: 50px;
  padding: 50px;
  background-color: lightgreen;
  opacity: 1;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<div>
  <div class="fade">Fade In 01</div>
  <div class="fade">Fade In 02</div>
  <div class="fade">Fade In 03</div>
  <div class="fade">Fade In 04</div>
  <div class="fade">Fade In 05</div>
  <div class="fade">Fade In 06</div>
  <div class="fade">Fade In 07</div>
  <div class="fade">Fade In 08</div>
  <div class="fade">Fade In 09</div>
  <div class="fade">Fade In 10</div>
</div>
(小提琴: http://jsfiddle.net/eLwex993/3/http://jsfiddle.net/eLwex993/3/)

  • I added a threshold to the if-clause, see explanationbelow.
  • I created variables for the thresholdand for min/maxat the start of the function. In the rest of the function these variables are referenced. This way, if you ever want to change the values again, you only have to do it in one place.
  • I also added || pageLoadto the if-clause. This was necessary to make sure all objects are faded to the correct opacity on page-load. pageLoadis a boolean that is send along as an argument when fade()is invoked.
    I had to put the fade-code inside the extra function fade() {...}, in order to be able to send along the pageLoadboolean when the scroll-handler is invoked.
    I did't see any other way to do this, if anyone else does, please leave a comment.
  • 我在 if 子句中添加了一个阈值,请参阅下面的说明
  • 我在函数开始时为 thethreshold和 for创建了变量min/max。在函数的其余部分,这些变量被引用。这样,如果您想再次更改这些值,只需在一个地方进行。
  • 我还添加|| pageLoad了 if 子句。这对于确保所有对象在页面加载时淡化到正确的不透明度是必要的。pageLoad是一个布尔值,在fade()调用时作为参数发送。
    我不得不将淡入淡出代码放在 extra 中function fade() {...},以便能够在pageLoad调用滚动处理程序时发送布尔值。
    我没有看到任何其他方法可以做到这一点,如果有人这样做,请发表评论。

Explanation:
The reason the code in your fiddledidn't work, is because the actual opacity values are always a little off from the value you set it to. So if you set the opacity to 0.3, the actual value (in this case) is 0.300000011920929. That's just one of those little bugs you have to learn along the way by trail and error. That's why this if-clause won't work: if ($(this).css("opacity") == 0.3) {...}.

说明:您的小提琴中
的代码不起作用的原因是因为实际的不透明度值总是与您设置的值略有偏差。因此,如果您将不透明度设置为,则实际值(在本例中)为。这只是您必须通过跟踪和错误学习的那些小错误之一。这就是为什么这个if子句将无法正常工作:。0.30.300000011920929if ($(this).css("opacity") == 0.3) {...}

I added a threshold, to take that difference into account: == 0.3becomes <= 0.31.
(I've set the threshold to 0.01, this can be changed of course, just as long as the actual opacity will fall between the set value and this threshold.)

我添加了一个阈值,以将这种差异考虑在内:== 0.3成为<= 0.31.
(我已将阈值设置为0.01,当然可以更改,只要实际不透明度介于设置值和此阈值之间即可。)

The operators are now changed from ==to <=and >=.

运算符现在从 更改==<=>=



UPDATE 2:

更新 2:

If you want to fade the elements based on their visible percentage, use the following code:

如果要根据元素的可见百分比淡化元素,请使用以下代码:

$(window).on("load",function() {
  function fade(pageLoad) {
    var windowTop=$(window).scrollTop(), windowBottom=windowTop+$(window).innerHeight();
    var min=0.3, max=0.7, threshold=0.01;
    
    $(".fade").each(function() {
      /* Check the location of each desired element */
      var objectHeight=$(this).outerHeight(), objectTop=$(this).offset().top, objectBottom=$(this).offset().top+objectHeight;
      
      /* Fade element in/out based on its visible percentage */
      if (objectTop < windowTop) {
        if (objectBottom > windowTop) {$(this).fadeTo(0,min+((max-min)*((objectBottom-windowTop)/objectHeight)));}
        else if ($(this).css("opacity")>=min+threshold || pageLoad) {$(this).fadeTo(0,min);}
      } else if (objectBottom > windowBottom) {
        if (objectTop < windowBottom) {$(this).fadeTo(0,min+((max-min)*((windowBottom-objectTop)/objectHeight)));}
        else if ($(this).css("opacity")>=min+threshold || pageLoad) {$(this).fadeTo(0,min);}
      } else if ($(this).css("opacity")<=max-threshold || pageLoad) {$(this).fadeTo(0,max);}
    });
  } fade(true); //fade elements on page-load
  $(window).scroll(function(){fade(false);}); //fade elements on scroll
});
.fade {
  margin: 50px;
  padding: 50px;
  background-color: lightgreen;
  opacity: 1;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<div>
  <div class="fade">Fade In 01</div>
  <div class="fade">Fade In 02</div>
  <div class="fade">Fade In 03</div>
  <div class="fade">Fade In 04</div>
  <div class="fade">Fade In 05</div>
  <div class="fade">Fade In 06</div>
  <div class="fade">Fade In 07</div>
  <div class="fade">Fade In 08</div>
  <div class="fade">Fade In 09</div>
  <div class="fade">Fade In 10</div>
</div>
(小提琴: http://jsfiddle.net/eLwex993/5/http://jsfiddle.net/eLwex993/5/)

回答by hobbeshunter

I tweaked your code a bit and made it more robust. In terms of progressive enhancement it's probaly better to have all the fade-in-out logic in JavaScript. In the example of myfunksyde any user without JavaScript sees nothing because of the opacity: 0;.

我稍微调整了您的代码,使其更加健壮。在渐进增强方面,在 JavaScript 中拥有所有淡入淡出逻辑可能会更好。在 myfunksyde 的示例中,任何没有 JavaScript 的用户都看不到任何东西,因为opacity: 0;.

    $(window).on("load",function() {
    function fade() {
        var animation_height = $(window).innerHeight() * 0.25;
        var ratio = Math.round( (1 / animation_height) * 10000 ) / 10000;

        $('.fade').each(function() {

            var objectTop = $(this).offset().top;
            var windowBottom = $(window).scrollTop() + $(window).innerHeight();

            if ( objectTop < windowBottom ) {
                if ( objectTop < windowBottom - animation_height ) {
                    $(this).html( 'fully visible' );
                    $(this).css( {
                        transition: 'opacity 0.1s linear',
                        opacity: 1
                    } );

                } else {
                    $(this).html( 'fading in/out' );
                    $(this).css( {
                        transition: 'opacity 0.25s linear',
                        opacity: (windowBottom - objectTop) * ratio
                    } );
                }
            } else {
                $(this).html( 'not visible' );
                $(this).css( 'opacity', 0 );
            }
        });
    }
    $('.fade').css( 'opacity', 0 );
    fade();
    $(window).scroll(function() {fade();});
});

See it here: http://jsfiddle.net/78xjLnu1/16/

在这里看到它:http: //jsfiddle.net/78xjLnu1/16/

Cheers, Martin

干杯,马丁

回答by Michael Deleau

I know it's late, but I take the original code and change some stuff to control easily the css. So I made a code with the addClass() and the removeClass()

我知道已经晚了,但我采用了原始代码并更改了一些内容以轻松控制 css。所以我用 addClass() 和 removeClass() 做了一个代码

Here the full code : http://jsfiddle.net/e5qaD/4837/

这里的完整代码:http: //jsfiddle.net/e5qaD/4837/

        if( bottom_of_window > bottom_of_object ){
            $(this).addClass('showme');
       }
        if( bottom_of_window < bottom_of_object ){
            $(this).removeClass('showme');

回答by Valumin

Sorry this is and old thread but some people would still need this I guess,

对不起,这是旧线程,但我想有些人仍然需要这个,

Note: I achieved this using Animate.css library for animating the fade.

注意:我使用 Animate.css 库来实现淡入淡出动画。

I used your code and just added .hidden class (using bootstrap's hidden class) but you can still just define .hidden { opacity: 0; }

我使用了您的代码并刚刚添加了 .hidden 类(使用引导程序的隐藏类)但您仍然可以定义 .hidden { opacity: 0; }

$(document).ready(function() {

/* Every time the window is scrolled ... */

$(window).scroll( function(){

/* Check the location of each desired element */
$('.hideme').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).removeClass('hidden');
        $(this).addClass('animated fadeInUp');
    }    else {
            $(this).addClass('hidden');
               }

}); 
}); 
});

Another Note: Applying this to containers might cause it to be glitchy.

另一个注意事项:将此应用于容器可能会导致它出现故障。