admin管理员组文章数量:1341690
I'm trying to load my magnific popup modal on page load, however I can't quite understand the syntax in the documentation. How do I call the modal on page load?
My HTML:
<div id="test-modal" class"white-popup-block mfp-hide">
<h1>Modal Test</h1>
<p>
Test Some text.
</p>
<p>
<a class="popup-modal-dismiss">Dismiss</a>
</p>
</div>
My JS:
$(window).load(function(){
???? What code should I place???
});
I have already preloaded the script and css files, what do I type inside the JS to make it load the popup on load?
I'm trying to load my magnific popup modal on page load, however I can't quite understand the syntax in the documentation. How do I call the modal on page load?
My HTML:
<div id="test-modal" class"white-popup-block mfp-hide">
<h1>Modal Test</h1>
<p>
Test Some text.
</p>
<p>
<a class="popup-modal-dismiss">Dismiss</a>
</p>
</div>
My JS:
$(window).load(function(){
???? What code should I place???
});
I have already preloaded the script and css files, what do I type inside the JS to make it load the popup on load?
Share asked Dec 10, 2013 at 23:59 marchemikemarchemike 3,27713 gold badges60 silver badges99 bronze badges3 Answers
Reset to default 7Try this:
$.magnificPopup.open({
items: {
src: '<div id="test-modal" class="white-popup"><h1>Modal Test</h1><p>Test Some text.</p><p><a class="popup-modal-dismiss">Dismiss</a></p></div>',
type:'inline'
},
modal: true
});
And the fiddle...
$.magnificPopup.open({items: {src: '#id-of-your-popup'},type: 'inline'}, 0);
You can try this:
$.magnificPopup.open({
items: {
src: 'images/loading.gif',
type:'image'
},
modal: true
});
本文标签: javascripthow to load magnific popup modal on page loadStack Overflow
版权声明:本文标题:javascript - how to load magnific popup modal on page load - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743679380a2520863.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论