2017-05-12 131 views
0

我在使用colorbox的html頁面中工作,用於我的圖庫頁面幻燈片。我想將圖像保持在固定的高度和寬度,因爲圖像以正常的高度和寬度顯示。Colorbox:保持內容固定的高度和寬度

以下是我的代碼:

<a href="/img/slider/Slide9.jpg" class="button1 button2" title="" ><img src="/img/slider/Slide9.jpg" alt="Feature-img" align="right" style="width:100%;height:240px;" /></a> 

任何一個可以幫助我..提前感謝!

回答

0

只需將以下內容添加到代碼的腳本中即可。

  $(document).ready(function() { 
      $("a.button2").colorbox({maxWidth: '95%',maxHeight: '95%'});     
     }); 

希望這會對你有用。

僅供參考,http://www.jacklmoore.com/colorbox/

+0

我應該在哪裏保持代碼? –

+0

把它放在腳本標記 – Keynes

+0

是的,它像一個魅力 –

相關問題