我正在尝试从scrollorama(http://johnpolacek.github.io/scrollorama/)实现“pin”功能,但我不确定我使用哪些代码部分来拉入我自己的文件。
我在哪里调整它在屏幕上的固定位置等?它是如何直接连接到“#unpin”和 h2 元素的?
我正在尝试从scrollorama(http://johnpolacek.github.io/scrollorama/)实现“pin”功能,但我不确定我使用哪些代码部分来拉入我自己的文件。
我在哪里调整它在屏幕上的固定位置等?它是如何直接连接到“#unpin”和 h2 元素的?
To pin
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}})
)
});
To remove pin
controller.removePin('#examples-2', false);
More detail you can see on super scrollama page http://johnpolacek.github.io/superscrollorama/