scrolling images

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Giuseppe Dini

    scrolling images

    I'm looking desperatle for a javascript that allow me to show a few
    small images scrolling horizzontaly on the screen from right to left.
    I'm sure I've seen a lot of time such a script, but now I can't find
    it again.
    hope someone help me
  • Evertjan.

    #2
    Re: scrolling images

    Giuseppe Dini wrote on 08 mei 2004 in comp.lang.javas cript:[color=blue]
    > I'm looking desperatle for a javascript that allow me to show a few
    > small images scrolling horizzontaly on the screen from right to left.
    > I'm sure I've seen a lot of time such a script, but now I can't find
    > it again.[/color]

    why javascript?

    <marquee direction=left behavior=scroll scrollamount=10 scrolldelay=200 >
    <img src="img1.jpg">
    <img src="img2.jpg">
    <img src="img3.jpg">
    .......... etc.
    </marquee>


    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)

    Comment

    • David Dorward

      #3
      Re: scrolling images

      Evertjan. wrote:
      [color=blue]
      > why javascript?
      > <marquee direction=left behavior=scroll scrollamount=10 scrolldelay=200 >[/color]

      Becuase it is better supported then non-standard psuedo-HTML?

      --
      David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>

      Comment

      • Lasse Reichstein Nielsen

        #4
        Re: scrolling images

        "Evertjan." <exjxw.hannivoo rt@interxnl.net > writes:
        [color=blue]
        > why javascript?
        >
        > <marquee direction=left behavior=scroll scrollamount=10 scrolldelay=200 >
        > <img src="img1.jpg">
        > <img src="img2.jpg">
        > <img src="img3.jpg">
        > .......... etc.
        > </marquee>[/color]

        Because marquee isn't a valid HTML tag, and isn't supported by all browsers?


        /L
        --
        Lasse Reichstein Nielsen - lrn@hotpop.com
        DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
        'Faith without judgement merely degrades the spirit divine.'

        Comment

        • DU

          #5
          Re: scrolling images

          Evertjan. wrote:
          [color=blue]
          > Giuseppe Dini wrote on 08 mei 2004 in comp.lang.javas cript:
          >[color=green]
          >>I'm looking desperatle for a javascript that allow me to show a few
          >>small images scrolling horizzontaly on the screen from right to left.
          >>I'm sure I've seen a lot of time such a script, but now I can't find
          >>it again.[/color]
          >
          >
          > why javascript?
          >
          > <marquee direction=left behavior=scroll scrollamount=10 scrolldelay=200 >
          > <img src="img1.jpg">
          > <img src="img2.jpg">
          > <img src="img3.jpg">
          > .......... etc.
          > </marquee>
          >
          >[/color]

          In a few years from now, this might be working in MSIE:

          <div style="marquee-style: slide; marquee-direction: left;
          marquee-speed: 10px/sec; marquee-repetition: infinite;">
          <img src="img1.jpg">
          <img src="img2.jpg">
          <img src="img3.jpg">
          </div>



          DU

          Comment

          • Giuseppe Dini

            #6
            Re: scrolling images

            ...and for other browsers?

            "DU" <drunclear@hotW IPETHISmail.com >[color=blue]
            > In a few years from now, this might be working in MSIE:
            >
            > <div style="marquee-style: slide; marquee-direction: left;
            > marquee-speed: 10px/sec; marquee-repetition: infinite;">
            > <img src="img1.jpg">
            > <img src="img2.jpg">
            > <img src="img3.jpg">
            > </div>
            >
            > http://www.w3.org/TR/2002/WD-css3-box-20021024/#marquee
            >
            > DU[/color]


            Comment

            • Evertjan.

              #7
              Re: scrolling images

              DU wrote on 08 mei 2004 in comp.lang.javas cript:[color=blue]
              > I wrote:[color=green]
              >> why javascript?
              >>
              >> <marquee direction=left behavior=scroll scrollamount=10 scrolldelay=200 >
              >> <img src="img1.jpg">
              >> <img src="img2.jpg">
              >> <img src="img3.jpg">
              >> .......... etc.
              >> </marquee>
              >>
              >>[/color]
              >
              > In a few years from now, this might be working in MSIE:
              >
              > <div style="marquee-style: slide; marquee-direction: left;
              > marquee-speed: 10px/sec; marquee-repetition: infinite;">
              > <img src="img1.jpg">
              > <img src="img2.jpg">
              > <img src="img3.jpg">
              > </div>
              >
              > http://www.w3.org/TR/2002/WD-css3-box-20021024/#marquee
              >[/color]

              For the time being, try javascript:

              <http://devrijehuisarts .org/test/jsmarquee.asp>

              --
              Evertjan.
              The Netherlands.
              (Please change the x'es to dots in my emailaddress)

              Comment

              • David Dorward

                #8
                Re: scrolling images

                Giuseppe Dini wrote:[color=blue]
                > "DU" <drunclear@hotW IPETHISmail.com >[color=green]
                >> In a few years from now, this might be working in MSIE:[/color][/color]
                [color=blue][color=green]
                >> http://www.w3.org/TR/2002/WD-css3-box-20021024/#marquee[/color][/color]
                [color=blue]
                > ..and for other browsers?[/color]

                They'll probably get support long before Microsoft adds it to IE.

                --
                David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>

                Comment

                Working...