@bruce
Just so you know, the developer may be using those settings AND/OR these ones as both come from the demo site file theme.js
`// version 1.1 ----------- NEW CLASSES ---------------
// Class name = Effect description
// scrollfade = FadeIn’
// scrollfadedown = Fade In Down’
// scrollfadeup = Fade In Up’
// scrollslideup = Slide In Up
// scrollslideleft = Slide In Left
// scrollsliderigh = Slide In Right
// scrollbounce = Bounce
// scrollbounceleft = Bounce In Left
// scrollbounceup = Bounce In Up
// scrollbouncein = bounce In
// scrollspeedin = Light Speed In
// scrollflip = Flip In X (horizontal)
// scrollelastic = Elastic Band + bounch
// scrolltada = Tada tumult
// TO EDIT GLOBAL OPTION OPEN THE jquery.viewportchecker.js AND EDIT the code below
// The currently available global options are:
// classToAdd: ‘visible’, // Class to add to the elements when they are visible
// classToRemove: ‘invisible’, // Class to remove before adding ‘classToAdd’ to the elements
// offset: 100, // [100 OR 10%] The offset of the elements (let them appear earlier or later). This can also be percentage based by adding a ‘%’ at the end
// invertBottomOffset: true, // Add the offset as a negative number to the element’s bottom
// repeat: false, // Add the possibility to remove the class if the elements are not visible
// callbackFunction: function(elem, action){}, // Callback to do after a class was added to an element. Action will return “add” or “remove”, depending if the class was added or removed
// scrollHorizontal: false // Set to true if your website scrolls horizontal instead of vertical.
jQuery(’.scrollfade’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated fadeIn’,
offset: 50,
repeat: true
}); ;
jQuery(’.scrollfadeup’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated fadeInUp’
// offset: 10,
// repeat: true
}); ;
jQuery(’.scrollfadedown’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated fadeInDown’
}); ;
jQuery(’.scrollslideup’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated slideInUp’
}); ;
jQuery(’.scrollslideleft’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated slideInLeft’
}); ;
jQuery(’.scrollslideright’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated slideInRight’
}); ;
jQuery(’.scrollbounce’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated bounce’
}); ;
jQuery(’.scrollbounceleft’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated bounceInLeft’
}); ;
jQuery(’.scrollbounceup’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated bounceInUp’
}); ;
jQuery(’.scrollbouncein’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated bounceIn’
}); ;
jQuery(’.scrollspeedin’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated lightSpeedIn’
}); ;
jQuery(’.scrollflip’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated flipInX’
}); ;
jQuery(’.scrollelastic’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated rubberBand’
}); ;
jQuery(’.scrolltada’).addClass(“hidden”).viewportChecker({
classToAdd: ‘visible animated tada’
}); ;
//--------------------- END SCROLL EFFECTS ---------------------`
It might depend on what page type you’re creating, might be dependant on Theme version, hard to say without having the Theme myself.
HTH
Brad
