1

我已经使用ascensor js 插件建立了一个网站, 除了在 Internet Explorer 中,它一切正常。第一次访问该站点时,它将正确加载。如果您刷新页面,它有时会起作用。如果您清除缓存或清除历史记录并访问该网站,它将无法正确加载。URL 将是正确的,但它显示的页面不正确。它应该显示 2 级,但显示 1 级。

我尝试使用该插件查看其他站点,但它们都在 1 级加载了站点。我用来加载它的代码如下。WindowsOn:2,应该让它在第 2 级加载。我尝试修改我的 JavaScript,但没有运气。

任何人都可以帮助我修复或替代以将其加载到正确的位置。www.newworldwhisky.com.au

谢谢

$('#ascensorBuilding').ascensor({
    AscensorName:'ascensor',
    ChildType:'section',
    AscensorFloorName:'starward | home | distillery | our_history | our_team | process_and_innovation | participate | buy_our_whisky | work_with_us | news_and_events | contact_us | media',
    Time:700,
    Easing:'easeInOutCubic',
    WindowsOn:2,
    Direction:'chocolate',
    AscensorMap:'1|1 & 2|1 & 3|1 & 3|2 & 3|3 & 3|4 & 4|1 & 4|2 & 4|3 & 4|4 & 5|1 & 5|2',
    KeyNavigation: true,
    Queued:false,
    QueuedDirection:"x"
});

我还附上了错误的屏幕截图。第一个是它应该如何加载,第二个是错误。

加载错误截图

4

1 回答 1

0

Ended up finding the solution. The canvas tags were withing the ascensor building that the plugin uses to hold all the pages. I moved it outside of that and it fixed the loading issue in IE

于 2013-02-28T03:41:19.457 回答