我正在使用插件ascensor.js并且正在尝试做一个简单的示例,但是它不起作用,并且我看不到错误。
代码在以下小提琴中:http: //jsfiddle.net/C2vLH/2/
JS
$(document).ready(function () {
$('#ascensorBuilding').ascensor({
ascensorName: 'ascensor',
childType: 'section',
ascensorFloorName: ['hello1', 'hello2', 'hello3', 'hello4'],
time: 1000,
windowsOn: 1,
direction: "chocolate",
ascensorMap: [
[1, 0],
[1, 1],
[2, 1]
],
easing: 'easeInOutQuad',
keyNavigation: true,
queued: false,
queuedDirection: "y",
overflow: "hidden"
});
});
HTML
<button class="ascensor ascensorLink0">hello1</button>
<button class="ascensor ascensorLink1">hello2</button>
<button class="ascensor ascensorLink2">hello3</button>
<button class="ascensor ascensorLink3">hello4</button>
<div id="ascensorBuilding">
<section>Hello1</section>
<section>Hello2</section>
<section>Hello3</section>
<section>Hello4</section>
</div>
结果我看到同一页面中的所有部分,当我点击按钮时没有发生任何事情......
你知道有什么插件有类似的效果吗?
任何提示或建议将不胜感激。如果您需要更多信息,请告诉我,我会编辑帖子。