突出显示滚动条上的文字

Highlight text on scroll

我想制作突出显示文本中每个字母的动画。是否有 jQuery 插件可以在 window scoll 上突出显示文本?试图找出实现这一目标的轻量级方法。

这就是我想做的:

highlight();

$(window).on("scroll", function(){
  highlight();
});

function highlight(){
  var scroll = $(window).scrollTop();
  var height = $(window).height();

  $(".highlight").each(function(){
    var pos = $(this).offset().top;
    if (scroll+height >= pos) {
      $(this).addClass("active");
    } 
  });
}  

https://jsfiddle.net/4vm1sht5/3/