spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column31


Stopping the Pages

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

To pause the scroll while a user mouses over the scrolling box, we added two events to the scrolling DIVs, onMouseOver and onMouseOut. These events are defined for both firstPage and secondPage DIVs, as either one of them may be exposed at the canvas container layer. The onMouseOver event occurs when the mouse is placed over the scroll box. The onMouseOut event occurs when the mouse is removed from the scroll box area. The event handler for the onMouseOver event is the scrollPages() function which has been discussed on the previous page. It starts the pages going, just as the invocation of the program would in the first place:

function scrollPages() {
    Gtimer = setInterval("moveUp()", interval)
}

The Gtimer variable stores a pointer to the setInterval() command, which invokes the moveUp() function every interval ms. The event handler of the onMouseOut event is the stopScrolling() function which clears the Gtimer pointer and thus cancels the call to the moveUp() function, causing the pages to halt:

function stopScrolling() {
  clearInterval(Gtimer);
}

http://www.internet.com

Produced by Yehuda Shiran and Tomer Shiran

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint


Created: December 7, 1998
Revised: December 7, 1998

URL: http://www.webreference.com/js/column31/stop.html