Sha256: ff473a90e0bdef914729a6b288d28555a17157406eb5c91e6f26f1aa7403eea6

Contents?: true

Size: 1.26 KB

Versions: 8

Compression:

Stored size: 1.26 KB

Contents

dojo.provide("dojox.fx.scroll");
dojo.experimental("dojox.fx.scroll"); 

dojo.require("dojox.fx._core"); 

dojox.fx.smoothScroll = function(/* Object */args){
	// summary: Returns an animation that will smooth-scroll to a node (specified in etup())
	// description: This implementation support either horizental or vertical scroll, as well as
	//		both. In addition, element in iframe can be scrolled to correctly.
	// offset: {x: int, y: int} this will be added to the target position
	// duration: Duration of the animation in milliseconds.
	// win: a node or window object to scroll
	
	if(!args.target){ args.target = dojo.coords(args.node,true); }

	var isWindow = dojo[(dojo.isIE ? "isObject" : "isFunction")](args["win"].scrollTo);

	var _anim = (isWindow) ?
		(function(val){
			args.win.scrollTo(val[0],val[1]);
		}) :
		(function(val){
			args.win.scrollLeft = val[0];
			args.win.scrollTop = val[1];
		});

	var anim = new dojo._Animation(dojo.mixin({
		beforeBegin: function(){
			if(this.curve){ delete this.curve; }
			var current = isWindow ? dojo._docScroll() : {x: args.win.scrollLeft, y: args.win.scrollTop};
			anim.curve = new dojox.fx._Line([current.x,current.y],[args.target.x,args.target.y]);
		},
		onAnimate: _anim
	},args));
	return anim; // dojo._Animation
};

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
dojo-pkg-1.132.0 data/dojo-release-1.3.2-src/dojox/fx/scroll.js
dojo-pkg-1.111.0 data/dojo-release-1.1.1-src/dojox/fx/scroll.js
dojo-pkg-1.120.0 data/dojo-release-1.2.0-src/dojox/fx/scroll.js
dojo-pkg-1.121.0 data/dojo-release-1.2.1-src/dojox/fx/scroll.js
dojo-pkg-1.122.0 data/dojo-release-1.2.2-src/dojox/fx/scroll.js
dojo-pkg-1.123.0 data/dojo-release-1.2.3-src/dojox/fx/scroll.js
dojo-pkg-1.130.0 data/dojo-release-1.3.0-src/dojox/fx/scroll.js
dojo-pkg-1.131.0 data/dojo-release-1.3.1-src/dojox/fx/scroll.js