我正在使用插件ascensor.js,我試圖做一個簡單的例子,但它不起作用,我看不到錯誤。爲什麼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>
在結果中,我看到了同一頁面中的所有部分,並且當我單擊按鈕時不會發生任何事情...
你知道有什麼類似的效果的插件嗎?
任何提示或建議,將不勝感激。如果您需要更多信息,請告訴我,我將編輯帖子。
Hellyeah!就是這樣,github的版本工作完美:https://github.com/kirkas/Ascensor.js這裏是一個小提琴:http://jsfiddle.net/C2vLH/14/ – harrison4