left to right horizontal scroller

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Generale Cluster

    left to right horizontal scroller

    Hello, where can I find an horizontal scroller where I can set the
    scrolling direction from left to right?
    Thank you

    --
    elimina unsampdoriano per rispondere via email


  • Grant Wagner

    #2
    Re: left to right horizontal scroller

    Generale Cluster wrote:
    [color=blue]
    > Hello, where can I find an horizontal scroller where I can set the
    > scrolling direction from left to right?
    > Thank you[/color]

    Make your content wider than the viewport and you'll get a scrollbar:

    <div style="width:10 000px;">Test</div>

    Or use CSS on the body to force a horizontal scrollbar:

    <body
    style="width:10 000px;overflow-x:scroll;overfl ow:-moz-scrollbars-horizontal;">

    (you might have limited success with this approach - it works in Opera
    7.54, IE 6.0.2800 and Firefox 1.0PR, but other browsers may or may not
    do the correct thing)

    I'm not really sure what you're trying to achieve, so it's difficult to
    provide assistance.

    --
    Grant Wagner <gwagner@agrico reunited.com>
    comp.lang.javas cript FAQ - http://jibbering.com/faq

    Comment

    • Generale Cluster

      #3
      Re: left to right horizontal scroller

      "Grant Wagner" <gwagner@agrico reunited.com> ha scritto nel messaggio
      news:41586585.A 7D447CE@agricor eunited.com[color=blue]
      > Generale Cluster wrote:
      >[color=green]
      >> Hello, where can I find an horizontal scroller where I can set the
      >> scrolling direction from left to right?
      >> Thank you[/color]
      >[/color]
      [color=blue]
      > I'm not really sure what you're trying to achieve, so it's difficult
      > to provide assistance.[/color]


      Thanks for your answer.
      This is not what I need.
      What I need is a script to make an animated news ticker automatically
      scrolling from left to right instead of right to left.

      Thank you


      --
      elimina unsampdoriano per rispondere via email


      Comment

      • Andrew Thompson

        #4
        Re: left to right horizontal scroller

        On Tue, 28 Sep 2004 01:44:12 +0200, Generale Cluster wrote:[color=blue][color=green]
        >> Generale Cluster wrote:
        >>[color=darkred]
        >>> Hello, where can I find an horizontal scroller where I can set the
        >>> scrolling direction from left to right?[/color][/color][/color]
        ...[color=blue]
        > What I need is a script to make an animated news ticker automatically
        > scrolling from left to right instead of right to left.[/color]

        Most scripts that scroll from right -> left are relatively
        easy to alter so they will do left -> right.

        Find a simple one that works on a variety of browsers
        and I am sure you will find people here who are happy
        to guide you how to alter it (as they correct the
        script itself) to scroll in the other direction.

        Is this for text, or is it images only?

        Newer browsers will render characters from languages
        written right-to-left correctly, but older browsers
        simply reverse the order of the letters, leaving an
        (often quite amusing) mess.

        --
        Andrew Thompson
        http://www.PhySci.org/codes/ Web & IT Help
        http://www.PhySci.org/ Open-source software suite
        http://www.1point1C.org/ Science & Technology
        http://www.lensescapes.com/ Images that escape the mundane

        Comment

        • Thomas 'PointedEars' Lahn

          #5
          Re: left to right horizontal scroller

          Generale Cluster wrote:
          [color=blue]
          > What I need is a script to make an animated news ticker automatically
          > scrolling from left to right instead of right to left.[/color]

          What you need is Brain 1.0 to recognize that an animated news ticker,
          especially when accomplished with client-side scripting, is a Bad Thing
          (and a sender address that can be replied to to get my further attention.)


          PointedEars

          Comment

          Working...