1

美好的一天 - 这是我在 StackOverflow 上的第一篇文章,当谈到 jQuery 和 JS 时,我有点菜鸟......所以对我来说放轻松:) 就这样......

我正在重新创建我的投资组合网站并使用几个 jQuery 插件。其中之一是 jquery.ascensor.js 插件,可在此处找到 - Ascensor Plugin

这一切都很完美,除了我试图添加一个(希望这是正确的术语)一个自定义回调函数,这将允许我在特定的“ascensorFloor1,2,3 ...等”时设置动画(使用css3)进入视野,然后在视野之外消失......我希望这是有道理的。

这是我调用插件的 HTML:

$('#ascensorBuilding').ascensor({
        AscensorName:'ascensor',
        ChildType:'section',
        AscensorFloorName:'Home | Implementation | HTML | Jquery | CSS | Smartphone | Credits',
        Time:1000,
        WindowsOn:1,
        Direction:'chocolate',
        AscensorMap:'2|1 & 2|2 & 2|3 & 2|4 & 2|5 & 1|5 & 2|6',
        Easing:'easeInOutQuad',
        KeyNavigation:true,
        Queued:false
    });

正文中的 HTML:

<section id="ascensorFloor1" class="ascensorFloor" style="position: absolute; width: 1920px; height: 955px; left: 3840px; top: 955px;">
    <article class="container_12">
        <h1>Content for Floor 1</h1>
    </article>
</section>
<section id="ascensorFloor2" class="ascensorFloor" style="position: absolute; width: 1920px; height: 955px; left: 3840px; top: 955px;">
    <article class="container_12">
        <h1>Content for Floor 2</h1>
    </article>
</section>
<section id="ascensorFloor3" class="ascensorFloor" style="position: absolute; width: 1920px; height: 955px; left: 3840px; top: 955px;">
    <article class="container_12">
            <h1>Content for Floor 3</h1>
    </article>
</section>

我想我将能够处理 CSS3 代码,只需要一些关于 jQuery 'Callback' 函数的帮助。

任何帮助都会很棒。提前致谢 :)

4

0 回答 0