Fancybox非常适合显示内容以及图像或视频。要显示内容,请使用以下命令:
$.fancybox(\'<h1>My html content here</h1>\', {
fancyOption: \'fancyValue\'
});
fancybox上记录了此功能
How To 页
您也可以像使用fancybox链接图像一样,只使用fancybox链接内容:
<a href="#my-fancy-content" class="show-privacy-policy">Privacy Policy</a>
<div style="display:none;">
<div id="my-fancy-content"> --- your privacy policy here --- </div>
</div>
<script>
$(\'a.show-privacy-policy\').fancybox({
fancyOption: \'fancyValue\'
});
</script>