私はshopifyサイトでカスタムの壮大なポップアップに取り組んでいます.私のheader.liquidファイルでは、壮大なポップアップコンテンツを呼び出しています.
<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ライブラリファイルのようなものが恋しいかどうか教えてください。
前もって感謝します。