jQuery prettyPhoto - 设置灯箱的最大高度和宽度

时间:2012-07-25 10:02:03

标签: jquery prettyphoto css

我已安装了Pretty Photo jQuery插件,但我需要设置灯箱的最小和最大高度和宽度,似乎无法使其正常工作。

我尝试更改prettyPhoto.css文件而没有运气,我尝试查看prettyPhoto.js文件但无法确定维度的实际设置方式!?

任何人都知道如何做到这一点?

3 个答案:

答案 0 :(得分:3)

   $(document).ready(function(){
      $("a[rel^='prettyPhoto']").prettyPhoto({
        allow_resize: true, /* Resize the photos bigger than viewport. true/false */
        default_width: 500,
        default_height: 344,
        horizontal_padding: 20
      });
    });

fixed window-size in prettyphoto

答案 1 :(得分:2)

在PrettyPhoto.css文件/css/prettyPhoto.css中查找div.pp_pic_holder 并使用!important应用所需的宽度 防爆。 width: 825px !important;

答案 2 :(得分:0)

Here是您的问题的可能解决方法。这对我帮助最大。