如何设定固定的宽度和高度?

时间:2014-08-31 04:49:18

标签: web fancybox dreamweaver

如何在花式盒子上设置固定的宽度和高度?花哨的盒子很好但不是宽度/高度。

宽度应为953px,高度为100%。

脚本:

<script type="text/javascript">

  $(document).ready(function(){
      $(".fancybox").fancybox();
  });

  $(".fancybox").fancybox({
      padding : 0
  });

</script>   

1 个答案:

答案 0 :(得分:0)

您可以直接设置花式框的宽度和高度:

$(".fancybox").fancybox({
    'overlayShow': false,
    'frameWidth': 500, // set the width
    'frameHeight': 100, // set the height
    'type': 'iframe', // tell the script to create an iframe
    'autoDimensions':false,
    'autoSize':false
});

$('.fancybox').fancybox({
    autoDimensions: false,
    height: 300,
    width: 400
});