jQuery - Fancybox: But I don't want scrollbars!

前端 未结 24 2018
醉话见心
醉话见心 2020-12-15 17:37

I am using jQuery Fancybox for a popup registration form here

I would like the form to come up at the size of 450px by 700px but no matter what I set the height and

24条回答
  •  悲&欢浪女
    2020-12-15 18:00

    Fancybox 2.x at least has an "overlay helper" which turned out to be the key for me. I added the following to my fancybox configuration parameters:

    helpers : {
      overlay : {
        css : { 'overlay' : 'hidden' }
      }
    }
    

    I had tried setting this in the CSS, but that didn't work, and late in the game, such as on the beforeShow event, but that led to a flickering bar. This seems to work without a hitch.

提交回复
热议问题