want to move images in Y direction

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

    want to move images in Y direction

    i have made a web site n i want to move images in the Y direction in
    the sidebar of the website.
    i want it to look like new image is coming out from the bottom and
    moving up to the height of the sidebar and at the other end it is
    disappearing .
  • rf

    #2
    Re: want to move images in Y direction


    "animation" <pallaviagarwal 23@gmail.comwro te in message
    news:5dc750b3-352a-4e08-b267-d03755718eaf@d7 0g2000hsc.googl egroups.com...
    >i have made a web site n i want to move images in the Y direction in
    the sidebar of the website.
    i want it to look like new image is coming out from the bottom and
    moving up to the height of the sidebar and at the other end it is
    disappearing .
    Which will totally distract your viewers eyes away from the main content of
    your site.


    Comment

    • MartinRinehart@gmail.com

      #3
      Re: want to move images in Y direction

      animation wrote:
      i have made a web site n i want to move images in the Y direction in
      the sidebar of the website.
      i want it to look like new image is coming out from the bottom and
      moving up to the height of the sidebar and at the other end it is
      disappearing .
      Do stuff like this very sparingly!

      This is very easy with a <canvaselemen t: drawImage() at successively
      changing locations. Trouble with <canvasis that some company in
      Washington doesn't support that tag.

      W/o <canvascheck GIF animations. W/o GIF animations, create a
      sequence of images and load them all at once with the display property
      set to none. Then dlsplay them one at a time.

      Comment

      • David Mark

        #4
        Re: want to move images in Y direction

        On Oct 22, 1:29 pm, MartinRineh...@ gmail.com wrote:
        animation wrote:
        i have made a web site n i want to move images in the Y direction in
        the sidebar of the website.
        i want it to look like new image is coming out from the bottom and
        moving up to the height of the sidebar and at the other end it is
        disappearing .
        >
        Do stuff like this very sparingly!
        Yes. Less is more. Some sites seem to exist only to fade elements in
        and out.
        >
        This is very easy with a <canvaselemen t: drawImage() at successively
        Forget that.
        changing locations. Trouble with <canvasis that some company in
        Washington doesn't support that tag.
        That's why.
        >
        W/o <canvascheck GIF animations. W/o GIF animations, create a
        No.
        sequence of images and load them all at once with the display property
        set to none. Then dlsplay them one at a time.
        No.

        How about changing the top style of an absolutely positioned image
        element (or div with background image) over time?

        Comment

        Working...