Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i made the following code for a image re-size based of max width and same goes for height using .height() . the problem is still i can find a good responsive image re-size plugin or something like that could re-size image when we re-size browser . is there anything can could be implimented in my code or any new resposive plugin known to anyone to rezise image automatically when the browser is resized plus a deafult max-width and height ?

my code for max width resize

            // SET MIN AND MAX SIZE OF IMAGES
                if (lboxitem.find('.tp-mainimage').width() > opt.maxWidth) {
                        var oldimgw = lboxitem.find('.tp-mainimage').width();
                        var oldimgh = lboxitem.find('.tp-mainimage').height();
                        var perc = opt.maxWidth / oldimgw;
                        lboxitem.find('.tp-mainimage').width(opt.maxWidth);
                        lboxitem.find('.tp-mainimage').height(oldimgh*perc);
                }

                if (lboxitem.find('.tp-mainimage').width() < opt.minWidth) {
                        var oldimgw = lboxitem.find('.tp-mainimage').width();
                        var oldimgh = lboxitem.find('.tp-mainimage').height();
                        var perc = opt.minWidth / oldimgw;
                        lboxitem.find('.tp-mainimage').width(opt.minWidth);
                        lboxitem.find('.tp-mainimage').height(oldimgh*perc);
                }
share|improve this question

1 Answer

up vote 4 down vote accepted

Use .resize() (jQuery docs)

jsFiddle DEMO

$(window).resize(function () {
    var _width = $(window).width(),
        _height = $(window).height();

    // call your function() to make changes to its allowed maxes
});​

You might not even need Javascript for what you need... Think you can do what you need with CSS.

img { width:100%; height:auto; min-width:300px; }

share|improve this answer
can u explain it a little bit , i mean hw can i use it for specifically a image resize and with a max width and min width – Sakshi Sharma Aug 9 '12 at 19:38
Just updated the fiddle, resize the browser around. I think you can just use CSS to achieve that part once the images are out there already. – mcpDESIGNS Aug 9 '12 at 19:47
the image did not resize – Sakshi Sharma Aug 9 '12 at 19:52
What browser are you using? – mcpDESIGNS Aug 9 '12 at 19:52
sry didnt see u used min-height for that . its working and what if i only want the image to be resized not the other things only the image – Sakshi Sharma Aug 9 '12 at 19:53
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.