开发者

jquery.simplemodal-1.3.3.js : absolute positioning (vs. fixed)

开发者 https://www.devze.com 2022-12-18 00:05 出处:网络
I\'m using Eric Martin\'s sweet \'simplemodal\' jQuery plugin. It works wonderfully and would recommend it to anyone looking for a lightweight jQuery-based modal dialogue solution.

I'm using Eric Martin's sweet 'simplemodal' jQuery plugin. It works wonderfully and would recommend it to anyone looking for a lightweight jQuery-based modal dialogue solution.

That said, I have some particularly long content that "needs" to be displayed as a modal. By default, the container element uses 'overflow:auto' to handle content that is too long to fit within the browser window. This works well in most cases, but in this case I would like the dialogue to remain full height and scroll with the rest of the page (positioned 'absolute' vs. 'fixed'). I can get this working fairly easily by modifying any position: 'fixed' references in the source to position: 'absolute' but this sucks as it means ALL my modals will display this w开发者_如何学Cay...

Anyone have any thoughts on how to make this work gracefully?


try adding position:absolute to the actual modal call for that particular div region

like below

$("#somebutton").click(function() {

    $('#my-modal-content').modal({
        position:absolute
    });
});

I had the same issue as you, but I wanted a different size box for different buttons/functions and this is how I solved it. Good Luck!


This is what I do:

jQuery('#MyModal').modal({
    //options
});
jQuery('#MyModal').parents('.simplemodal-container').css('position', 'absolute');


It sounds like youre not adverse to adapting the source to you specific needs... therefore i would recommend reworking it so that you can supply the positioning and overflow properties via an options object.


Just have a scrollbar in the dialog itself.


You'd have to change the code significantly, especially the code that deals with IE (IE6 mainly).

Just changing to an absolute position would work initially for certain browsers, but some browsers or a page resize (in any browser) would revert back to a fixed position.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号