How do I go about setting a <div> in the center of the screen using jQuery?
feedback
|
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.
|
I like adding functions to jQuery so this function would help:
Now we can just write:
| |||||||||||||||||||
feedback
|
|
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 ? | ||||
feedback
|
|
I would recommend jQueryUI Position utility
which gives you much more possibilities than only centering ... | ||||
|
feedback
|
|
| |||
feedback
|
|
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. | ||||
|
feedback
|
|
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. | |||||
feedback
|
|
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:
| |||
|
feedback
|
|
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
}
}
...
| |||
|
feedback
|
|
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.
| ||||
|
feedback
|
|
This is untested, but something like this should work.
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Why you don't use CSS for centering a div?
| ||||
|
feedback
|