Results 1 to 3 of 3

Thread: Horizontal scrollbar with custom images...

  1. #1
    Join Date
    Apr 2008
    Posts
    11
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Question Horizontal scrollbar with custom images...

    The script here is exactly what I'm looking for: http://www.dynamicdrive.com/dynamici...gescroller.htm

    Except I need to adapt it so that it scrolls horizontally instead of vertically. Can anyone help me with this? Or direct me to somewhere with the script I'm looking for?

    Thanks in advance

    (P.S. Bit of a Javascript novice, so use small words please )

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by rhiaro View Post
    (P.S. Bit of a Javascript novice, so use small words please )
    Find

    Code:
    function scrollwindow(){
    window.scrollBy(0,myspeed)
    }
    Change to

    Code:
    function scrollwindow(){
    window.scrollBy(myspeed,0)
    }
    The 0 and myspeed are switched. Easy enough for ya?

  3. The Following User Says Thank You to Medyman For This Useful Post:

    rhiaro (04-23-2008)

  4. #3
    Join Date
    Apr 2008
    Posts
    11
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    Thank youu

    It seems so simple when you put it like that! (Learning JS is definitely on my things to do list...)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •