我試圖讓我的彩盒圖像響應,我已經實現了與下面的代碼:類型錯誤:jQuery.colorbox未定義
<script type="text/javascript">
// Make ColorBox responsive
jQuery.colorbox.settings.maxWidth = '95%';
jQuery.colorbox.settings.maxHeight = '95%';
// ColorBox resize function
var resizeTimer;
function resizeColorBox() {
if (resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
if (jQuery('#cboxOverlay').is(':visible')) {
jQuery.colorbox.load(true);
}
}, 300);
}
// Resize ColorBox when resizing window or changing mobile device orientation
jQuery(window).resize(resizeColorBox);
window.addEventListener("orientationchange", resizeColorBox, false);
</script>
但我歌廳以下錯誤:
TypeError: jQuery.colorbox is undefined
jQuery.colorbox.settings.maxWidth = '95%';
您是否在頁面中包含了colourbox js文件? –
你在腳本中導入框架嗎? – zur4ik