<!DOCTYPE html>
<html>
<head>
<title>Foundation 实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.staticfile.org/foundation/5.5.3/css/foundation.min.css">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/foundation/5.5.3/js/foundation.min.js"></script>
<script src="https://cdn.staticfile.org/foundation/5.5.3/js/vendor/modernizr.js"></script>
<style>
.test a {
background-color: red !important;
color: white !important;
}
</style>
</head>
<body style="height:1500px;padding:20px;">
<h3>麦哲伦导航选项</h3>
<h5 class="subheader"><code>active_class</code> 选项指定激活链接的样式类。默认为 .active.。该实例中我们设置为 .test ,该类在头部定义了:</h5>
<hr>
<div data-magellan-expedition="fixed" data-options="active_class:test">
<dl class="sub-nav">
<dd data-magellan-arrival="page1"><a href="#page1">Page 1</a></dd>
<dd data-magellan-arrival="page2"><a href="#page2">Page 2</a></dd>
</dl>
</div>
<hr>
<div style="height:200px;background-color:#1abc9c;color:white;">
<h3 data-magellan-destination="page1">Page1</h3>
<a name="page1"></a>
<p>滚动屏幕,查看导航栏上的变化。</p>
</div>