I have layout like this fiddle demo. and I have to stick on this layout only.
Onclick of section4 button the section .setpin
gets activated. And page jumps and reaches 50% up. It should not Jump.
This is happening only in Safari.
$('.next2').click(function(){
var s4 = new ScrollMagic.Scene({
triggerElement:'#section4',
triggerHook:0,
duration:'150%',
offset:0
})
.setPin('#section4')
.addTo(controller);
});
Note: Please check fiddle demo in safari. Because it works fine in chrome and mozilla.
I have got a solution.
Write this outside the click event event without setPin(). And make another scrollMagic object inside click event event.
This is final solution.
It will prevent scroll to going up.
Working Fiddle