nmyster
nmyster

Reputation: 452

Scrollorama - Horizontal scrolling does not work

I have been messing with scrollorama - the plugin for jquery and I am trying to make it work horizontally.

www.nmyster.co.uk/testGround

The site above have my testing and for some reason when I scroll to the right, one of elements does not fade in.. Why is this?

Thanks

Upvotes: 0

Views: 325

Answers (1)

Stepych
Stepych

Reputation: 46

Edit jquery.scrollorama.js

string 102:
var scrollTop = $(window).scrollTop(),

change to:
var scrollTop = $(window).scrollLeft(),

Upvotes: 1

Related Questions