You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if I scroll through my site, waypoints appears to be working correctly, but if I scroll up and down too much features that are meant to fade out stay visible.
I'm sure there is a more concise way of doing this, but here is my code so far:
Currently if I scroll through my site, waypoints appears to be working correctly, but if I scroll up and down too much features that are meant to fade out stay visible.
I'm sure there is a more concise way of doing this, but here is my code so far:
` var inviewOne = new Waypoint.Inview({
element: $('#one'),
enter: function(direction) {
if(direction === 'down'){
$("#messageOne").fadeIn(InSpeed);
} else {
$("#messageOne").fadeOut(2);
}
},
entered: function() {
`
The text was updated successfully, but these errors were encountered: