6
我有問題只使用可用的視口來設置colorbox。只要我設置了maxHeight或maxWidth屬性,就不會顯示圖像。彩盒打開,但停留在「旋轉輪」上。Colorbox maxWidth,maxHeight不工作
function showImage(e) {
$.colorbox({href:$(e.currentTarget).attr("src")}); }
jQuery(document).ready(function() {
$('.popout').on("click", showImage);
$('.popout').colorbox({rel:'popout', maxWidth:'95%', maxHeight:'95%'}); });
<img class="popout" src="my.jpg" alt="" width="500" height="373" />
那麼,我的代碼有什麼問題?或者,我是否還需要設置其他屬性以使maxWidth/height工作?