Back to the main page

Running ticker


ABB Ltd -

Alfa Laval -

ASSA ABLOY B -

AstraZeneca -

Atlas Copco A -

Atlas Copco B -

Autoliv SDB -

Axfood -

Boliden -

Castellum -

Electrolux A -

Electrolux B -

Elekta B -

Ericsson A -

Ericsson B -

Fabege -

Getinge B -

Handelsbanken A -

Handelsbanken B -

Hennes & Mauritz B -

Hexagon B -

Holmen A -

Holmen B -

Hufvudstaden A -

Hufvudstaden C -

Husqvarna A -

Husqvarna B -

Industrivärden A -

Industrivärden C -

Investor A -

Investor B -

JM -

Kinnevik A -

Kinnevik B -

Latour A -

Latour B -

Lindab International -

Lundbergföretagen B -

Lundin Mining Corp. SDB -

Lundin Petroleum -


Here's an example where Smooth Div Scroll is used to create a stock ticker. Since the autoScroll parameter is set to "always" the hot spots are disabled. I've also set the autoScrollDirection to "endlessloop" so it will start from the beginning when it reaches the end. Strangely this makes it possible to have scrolling text without having to give the text elements fixed widths(?) I have to analyze this more in detail before I can say why it behaves like this.

Here's the CSS for the p-tag that I have put inside SmoothDivScroll in this example:

	
	#scrollingText div.scrollableArea *
	{
		display: inline;
		margin: 0;
		padding: 2px 0px 0px 0px;
		font-family: Courier, Arial, Sans-Serif; 
		font-size:12px; 
		font-weight: normal; 
		background-color: #fff; 
		color: #000; 
		width: auto;
		height: auto;
	}
	
	
Back to the main page