JQuery slide down panel?

Maybe you meant something more like this: jsfiddle.net/8WN5c/6 This will actually slide the image down into place by moving the relative position of the image The "panel" in this case acts like a picture frame. The image can't be seen when it's outside the frame, and the image slides down into the frame HTML: div id="panel.

Maybe you meant something more like this: jsfiddle.net/8WN5c/6/ This will actually slide the image down into place by moving the relative position of the image. The "panel" in this case acts like a picture frame. The image can't be seen when it's outside the frame, and the image slides down into the frame.

HTML: CSS: body {background-color: #000} #panel { width: 430px; height: 320px; position: absolute; top: 0px; left: 0px; } #slideDownPanel { width: 430px; height: 320px; position: relative; top: -320px; } JS: $("#slideDownPanel"). Animate({ top: 0 }, 2000).

Many times thanks, It now working perfect. Thanks for shifting top value trick. – Gerelt Od Jun 6 at 4:48 Your welcome!

Thank you for the 'answer' credit : ) – Steve Jun 6 at 4:53.

I added it because has and no matter div's height value, image showing full. Btw its working as I expected thanks. – Gerelt Od Jun 6 at 4:46.

New to jsfiddle.. but this works. You need to either make a frame around what you are moving to reference it or move the object itself and keep the frame still. _______________ | | | | --------------------------- | | | | | | | | | |sliding image | | | |---------------| | | | | | | | | viewport | --------------------------- normal view jsfiddle.net/8WN5c/9/ The single screen view.

jsfiddle.net/8WN5c/9/embedded/result.

Js for your example $("#panel"). Animate({ height: 320, }, 2000); and css for your example body {background-color: #000} #panel { width: 200px; position: absolute; top: 0px; left: 0px; height: 0px; overflow:hidden; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions