I'm asking, because I'm trying to make that works inside Edge, but there's no results. I tried to go with several versions of this code from official plugin website:
$(document).ready(function(){
var controller = $.superscrollorama();
controller.addTween('#fade',
TweenMax.from($('#fade'),.5,{css:{opacity:0}}));
});
but non of them seem to do anything correctly. In example, if I do something with:
var controller = $.superscrollorama();
and change it to:
var controller = sym.$("superscrollorama");
then Edge seems to ignore almost whole code and acts like there is only the TweenMax.to function.
If there is anyone who knows the answer to solve this problem, please, be so kind.