源代码:
提交运行 »
<!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="http://www.fmpq.com/jscss/bootstrap/foundation.min.css"> <script src="http://www.fmpq.com/jscss/bootstrap/jquery.min.js"></script> <script src="http://www.fmpq.com/jscss/bootstrap/foundation.min.js"></script> <script src="http://www.fmpq.com/jscss/bootstrap/modernizr.js"></script> </head> <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> <!-- 初始化 Foundation JS --> <script> $(document).ready(function() { $(document).foundation(); }) </script> </body> </html>
测试结果: