为什么 Foundation Magellan 在遵循原始演示时不起作用?
Why does Foundation Magellan not work when following original demo?
要让 Foundation 的 Magellan 发挥作用,我缺少什么?
这是我的Codepen that is not working, but I copied the same HTML and CSS from this original Foundations Codepen。
我已添加:
jquery.js
foundation.js
foundation.magellan.js
foundation.core.js
foundation.smoothScroll.js
但是打不开,是不是少了什么?
所以有几件事...
他们没有告诉你的是你已经准备好文档中的 init
$(function() {
$(document).foundation();
});
而活跃的class是
.is-active
一旦你更新了这 2 个东西......你的 magellan 就会工作。
要让 Foundation 的 Magellan 发挥作用,我缺少什么?
这是我的Codepen that is not working, but I copied the same HTML and CSS from this original Foundations Codepen。
我已添加:
jquery.js
foundation.js
foundation.magellan.js
foundation.core.js
foundation.smoothScroll.js
但是打不开,是不是少了什么?
所以有几件事... 他们没有告诉你的是你已经准备好文档中的 init
$(function() {
$(document).foundation();
});
而活跃的class是
.is-active
一旦你更新了这 2 个东西......你的 magellan 就会工作。