All pastes #2069992 Raw Edit

Stuff

public text v1 · immutable
#2069992 ·published 2011-05-27 06:06 UTC
rendered paste body
var total_height = 0;
	$$('div#auto-scroll ul li').each( function(el){ 
		if(el.get('id') != 'repeat'){
			var height = el.getStyle('height').toInt();
			total_height = total_height + height;
		}
	});
	
	$$('#auto-scroll ul').setStyle('height',total_height);
	total_height = total_height * -1;
	
	var myTween = new Fx.Tween($$('#auto-scroll ul')[0], {
		duration: 50000,
		transition: 'linear'
	});
	
	myTween.start('top',total_height);
	
	
	$('auto-scroll').addEvents({'mouseover' : function(el){
		myTween.cancel();
	}, 'mouseleave':function(){				
		myTween.start('top',total_height);
	}});