0

我喜欢在网站上打开一个带有苹果效果的登录覆盖。调用覆盖有不同的触发器。这是我所做的:

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 标签的覆盖。

欢迎任何想法!

4

1 回答 1

1

你的javascript代码什么时候执行?我假设它被“文档就绪”事件触发一次?您是否确保您的 html 不会通过 ajax 重新呈现?

于 2013-10-24T10:13:41.750 回答