简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.bootcss.com/foundation/5.5.3/css/foundation.min.css"> <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/foundation/5.5.3/js/foundation.min.js"></script> <script src="https://cdn.bootcss.com/foundation/5.5.3/js/vendor/modernizr.js"></script> <body style="height:1500px;padding:20px;"> <h3>Magellan 选项</h3> <h5 class="subheader"> <code>destination_threshold</code> 选项指定了导航链接显示为激活(蓝色背景)时导航列表距离顶部的值。默认为20,本实例设置为60:</h5> <hr> <div data-magellan-expedition="fixed" data-options="destination_threshold:60"> <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> <h3 data-magellan-destination="page2">Page2</h3> <a name="page2"></a> <p>滚动屏幕,查看导航栏上的变化。并尝试向上滚动</p> <script> $(document).ready(function() {$(document).foundation();}) </script>
运行结果: