How do I go about setting a <div> in the center of the screen using jQuery?
|
|
I like adding functions to jQuery so this function would help:
Now we can just write:
Demo: http://jsfiddle.net/DerekL/GbDw9/ (with added parameter) |
|||||||||||||||||||||
|
|
I put a jquery plugin here http://plugins.jquery.com/project/autocenter VERY SHORT VERSION
SHORT VERSION
Activated by this code :
PLUGIN VERSION
Activated by this code :
is that right ? |
|||||||
|
|
I would recommend jQueryUI Position utility
which gives you much more possibilities than only centering ... |
|||||||||
|
|
Here's my go at it. I ended up using it for my Lightbox clone. The main advantage of this solution is that the element will stay centered automatically even if the window is resized making it ideal for this sort of usage.
|
|||||||||||
|
|
I'm expanding upon the great answer given by @TonyL. I'm adding Math.abs() to wrap the values, and also I take into account that jQuery might be in "no conflict" mode, like for instance in WordPress. I recommend that you wrap the top and left values with Math.abs() as I have done below. If the window is too small, and your modal dialog has a close box at the top, this will prevent the problem of not seeing the close box. Tony's function would have had potentially negative values. A good example on how you end up with negative values is if you have a large centered dialog but the end user has installed several toolbars and/or increased his default font -- in such a case, the close box on a modal dialog (if at the top) might not be visible and clickable. The other thing I do is speed this up a bit by caching the $(window) object so that I reduce extra DOM traversals, and I use a cluster CSS.
To use, you would do something like:
|
|||||||||
|
|
I would like to correct one issue.
Above code won't work in cases when window.height is 600 600 - 650 = -50 Now the box is centered -25 offscreen. |
||||
|
|
|
|
|||
|
|
I dont think having an absolute position would be best if you want an element always centered in the middle of the page. You probably want a fixed element. I found another jquery centering plugin that used fixed positioning. It is called fixed center. |
|||
|
The transition component of this function worked really poorly for me in Chrome (didn't test elsewhere). I would resize the window a bunch and my element would sort of scoot around slowly, trying to catch up. So the following function comments that part out. In addition, I added parameters for passing in optional x & y booleans, if you want to center vertically but not horizontally, for example:
|
|||
|
|
Edit:If the question taught me anything, it's this: don't change something that already works :) I'm providing an (almost) verbatim copy of how this was handled on http://www.jakpsatweb.cz/css/css-vertical-center-solution.html - it's heavily hacked for IE but provides a pure CSS way of answering the question:
Fiddle: http://jsfiddle.net/S9upd/4/ I've run this through browsershots and it seems fine; if for nothing else, I'll keep the original below so that margin percentage handling as dictated by CSS spec sees the light of day. Original:Looks like I'm late to the party! There are some comments above that suggest this is a CSS question - separation of concerns and all. Let me preface this by saying that CSS really shot itself in the foot on this one. I mean, how easy would it be to do this:
Right? Container's top left corner would be in the center of the screen, and with negative margins the content will magically reappear in the absolute center of the page! http://jsfiddle.net/rJPPc/ Wrong! Horizontal positioning is OK, but vertically... Oh, I see. Apparently in css, when setting top margins in %, the value is calculated as a percentage always relative to the width of the containing block. Like apples and oranges! If you don't trust me or Mozilla doco, have a play with the fiddle above by adjusting content width and be amazed. ... Now, with CSS being my bread and butter, I was not about to give up. At the same time, I prefer things easy, so I've borrowed the findings of a Czech CSS guru and made it into a working fiddle. Long story short, we create a table in which vertical-align is set to middle:
And than the content's position is fine-tuned with good old margin:0 auto;:
Working fiddle as promised: http://jsfiddle.net/teDQ2/ |
|||||||||||||
|
|
This is great. I added a callback function
...
center: function (options, callback) {
...
...
if (options.transition > 0) {
$(this).animate(props, options.transition, callback);
} else {
$(this).css(props);
if (typeof callback == 'function') { // make sure the callback is a function
callback.call(this); // brings the scope to the callback
}
}
...
|
|||
|
|
|
To center the element relative to the browser viewport (window), don't use This alternative version of the proposed center plugin uses "%" instead of "px" so when you resize the window the content is keep centered:
You need to put The Window Width: Element Width (in %): Them to calcule the centered left:
|
|||
|
|
|
This is untested, but something like this should work.
|
|||
|
|
|
you're getting that poor transition because you're adjusting the position of the element every time the document is scrolled. What you want is to use fixed positioning. I tried that fixed center plugin listed above and that seems to do solve the problem nicely. Fixed positioning allows you to center an element once, and the CSS property will take care of maintaining that position for you every time you scroll. |
|||
|
|
|
Here is my version. I may change it after I look at these examples.
|
|||||
|
|
|
Why you don't use CSS for centering a div?
|
|||||
|
protected by Community♦ Jul 21 '11 at 7:32
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
