我喜欢在网站上打开一个带有苹果效果的登录覆盖。调用覆盖有不同的触发器。这是我所做的:
HTML
<div id="top_nav">
<a id="my_side" rel="#overlay" href="overlay_login.jsf"></a>
</div>
<div class="apple_overlay" id="overlay">
<a class="close"></a>
<div class="content-wrap"></div>
</div>
<div class="call-button active" rel="#overlay" href="overlay_login.jsf">
some text
</span>
</div>
<div class="call-button active" rel="#overlay" href="overlay_login.jsf">
some text
</div>
<div class="call-button active" rel="#overlay" href="overlay_login.jsf">
some text
</div>
<div class="call-button active" rel="#overlay" href="overlay_login.jsf">
some text
</div>
这是我的 Javascript:
$('a[rel], div.call-button.active[rel]').overlay({
mask: {
color: '#ffffff',
loadSpeed: 200,
opacity: 0.5
},
effect: 'apple',
top: '15%',
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getOverlay().find(".content-wrap");
// load the page specified in the trigger
wrap.load(this.getTrigger().attr("href"));
},
closeOnClick: false,
load: false
});
但这只会打开一次 div 标签的覆盖。
欢迎任何想法!