我正在尝试实现scrollorama(http://johnpolacek.github.io/scrollorama/)中的“pin”功能,但我不确定使用代码的哪个部分拉入自己的文件。
我该在哪里调整屏幕上的固定位置等?它是如何直接连接到“unpin”和h2元素的?

最佳答案

固定

    controller.pin($('#examples-2'), 3000, {
  anim: (new TimelineLite())
    .append(
      TweenMax.fromTo($('#move-it'), .5,
        {css:{left: -200, top: 500}, immediateRender:true},
        {css:{top: -400}})
    )
    .append(
      TweenMax.to($('#move-it'), .5,
        {css:{left: 0}})
    )
});

拆卸销
controller.removePin('#examples-2', false);

您可以在超级滚动页面上看到更多详细信息http://johnpolacek.github.io/superscrollorama/

关于html5 - Scrollorama-'pin',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19650372/

10-12 00:13