tags:

views:

45

answers:

1

In MS PowerPoint you can slide content into the middle of the page from outside the screen and from any direction you choose. I wish to do this with Jquery. Basically, I want to slide a picture of a curtain from some direction, then slide a picture of a guy in and finally slide a quote on top of it all. Does anyone have any clue how to do this using Jquery?

A: 

1) Add image to the page. You can do this either with javascript or CSS. it must be position:absolute un placed outside the viewport (left: -WIDTHpx). Or just make it hidden with display:none; 2) Use jQuery .animate() or .slideToogle() to slide this image inside.

Māris Kiseļovs