我正在定制magnify弹出式Shopify网站。在我的header.liquid文件我打电话给magnific popup内容。宏大弹出不工作在shopify
<button id="open-popup" >Open popup</button>
<div id="my-popup" class="mfp-hide">
popup content here.
</div>
在这里,我已经在添加脚本theme.js.liquid
$('#open-popup').magnificPopup({
items: [
{
src: '#my-popup',
type: 'inline'
}
],
gallery: {
enabled: true
},
type: 'image'
});
,但它显示了以下错误
TypeError: $(...).magnificPopup is not a function
如果有人请告诉我,如果我我错过了像js库文件。
在此先感谢。