Skip to content

Releases: janpaepke/ScrollMagic

v1.0.4: Bugfix for mobile applications

08 Mar 12:16
Compare
Choose a tag to compare
When using iScroll the calculation of the scroll position was actually
wrong, because instead of really scrolling the container, iScroll moves
the content element.
To fix this a new method was added to the controller, that allows for
custom functions for the scroll position calculation.
When adding iScroll users should now define a function to calculate the
correct scroll position.
Example:
controller.scrollPos(function () {
	return -myScroll.y;
});

I also updated the main demo page to be mobile compatible.

New feature: disable/enable scenes and controller

08 Mar 00:50
Compare
Choose a tag to compare

use scene.enabled(false) to disable scenes without removing tweens or pins.
use controller.enabled(false) to disable all scenes attached to the controller (without touching their enabled setting)
See here for the discussion: #15

v1.0.1

02 Mar 12:25
Compare
Choose a tag to compare
Fixed a bug concerning the box-sizing model

Official first release.

26 Feb 17:47
Compare
Choose a tag to compare

ScrollMagic first release.

ScrollMagic is a rewrite of Superscrollorama.

Superscrollorama becomes ScrollMagic

27 Sep 09:39
Compare
Choose a tag to compare
Pre-release

Initial Release => complete rewrite of Superscrollorama.