我从网上下载了 Fancybox 并正在研究它。
<script type="text/javascript">
$(document).ready(function() {
/*
* Simple image gallery. Uses default settings
*/
$('.fancybox').fancybox();
$("#fancybox-manual-b").click(function() {
$.fancybox.open({
href : 'contact.php',
type : 'iframe',
padding : 5
});
});
});
</script>
<style type="text/css">
.fancybox-custom .fancybox-skin {
box-shadow: 0 0 50px #222;
}
</style>
<a class="fancybox fancybox.iframe" href="contact.php">Subscribe</a>
单击链接时它运行良好。但是现在我需要它在有人登录主页时自动弹出。谁能帮忙解决