a_knife_a_fork
a_knife_a_fork

Reputation: 47

Parallax scrolling text with Superscrollorama

I'm trying to get John Polacek's Superscrollorama jQuery plugin to work the parallax effect on some text but I keep running into the difficulties with - error message: "controller is not defined" but as far as I can tell the controller is defined, I'm probably missing the obvious but I'm not sure what?

http://jsfiddle.net/RPRzW/6/

Thanks

Upvotes: 1

Views: 4667

Answers (1)

Robin Maben
Robin Maben

Reputation: 23094

You need to initialize the controller, like so..

var controller = $.superscrollorama(); //Pass settings if any

Updated Demo

Upvotes: 2

Related Questions