You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
447 B

$(document).ready(function () {
var controller = $.superscrollorama({
triggerAtCenter: true,
//playoutAnimations: true,
reverse:false
});
controller.addTween('#quote-strip',
TweenMax.from($('#quote-strip'), .3, {css:{opacity:0}}));
controller.addTween('#event-program-strip',
TweenMax.from($('#event-program-strip'), .5, {css:{opacity:0}}));
controller.addTween('#footer',
TweenMax.from($('#footer'), .5, {css:{opacity:0}}));
});