我正在尝试使用this question中找到的脚本在Foundation 3中运行Orbit,但我无法正确初始化它。我在页脚中添加了此脚本,在标题中添加了Foundation.min.js。我在我的控制台的第3行得到了一个没有方法'基础'的错误它不起作用。
答案 0 :(得分:5)
您链接到的SO线程中的脚本将不适用于您,因为它使用Foundation 4. Orbit在Foundation 3(F3)中进行了不同的初始化。假设您有一个标识为orbitX
的元素。你初始化它是这样的:
$("#orbitX").orbit();
在你提出的另一个SO问题中
你会在哪里添加其他设置?
在初始化轨道元素时执行此操作:
$("#orbitX").orbit({
bullets: false; // to hide the bullets
});
以下是完整的选项集
$('#orbitX').orbit({
animation: 'fade', // fade, horizontal-slide, vertical-slide, horizontal-push
animationSpeed: 800, // how fast animtions are
timer: true, // true or false to have the timer
resetTimerOnClick: false, // true resets the timer instead of pausing slideshow progress
advanceSpeed: 4000, // if timer is enabled, time between transitions
pauseOnHover: false, // if you hover pauses the slider
startClockOnMouseOut: false, // if clock should start on MouseOut
startClockOnMouseOutAfter: 1000, // how long after MouseOut should the timer start again
directionalNav: true, // manual advancing directional navs
captions: true, // do you want captions?
captionAnimation: 'fade', // fade, slideOpen, none
captionAnimationSpeed: 800, // if so how quickly should they animate in
bullets: false, // true or false to activate the bullet navigation
bulletThumbs: false, // thumbnails for the bullets
bulletThumbLocation: '', // location from this file where thumbs will be
afterSlideChange: function(){}, // empty function
fluid: true // or set a aspect ratio for content slides (ex: '4x3')
});