- Foundation 通用
- Foundation - 全域性樣式
- Foundation - Sass
- Foundation - JavaScript
- Foundation - JavaScript 實用程式
- Foundation - 媒體查詢
- Foundation - 網格
- Foundation - Flex 網格
- Foundation - Form 表單
- Foundation - 可見性類
- Foundation - 基礎排版
- Foundation - 排版幫助工具
- Foundation - 基本控制元件
- Foundation - 導航
- Foundation - 容器
- Foundation - 媒體
- Foundation - 外掛
- Foundation SASS
- Foundation - Sass 函式
- Foundation - Sass Mixin
- Foundation 庫
- Foundation - Motion UI 動效使用者介面
- Foundation 有用資源
- Foundation - 快速指南
- Foundation - 有用資源
- Foundation - 討論
Foundation - Magellan 粘性導航
說明
Sticky 外掛可與 Magellan 一起使用,建立固定的導航頭。以下示例適用於較舊版本的 Foundation。
示例
以下示例演示在 Foundation 中使用 Magellan 粘性導航的方式 -
<!DOCTYPE html>
<html>
<head>
<title>Foundation Template</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/css/foundation.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/js/foundation.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js"></script>
</head>
<body>
<div data-magellan-expedition = "fixed">
<section class = "top-bar-section">
<div class = "sticky-mag">
<ul class = "horizontal menu" data-magellan>
<li data-magellan-arrival = "home"><a href = "#home">Home</a></li>
<li data-magellan-arrival = "about"><a href = "#about">About</a></li>
<li data-magellan-arrival = "service"><a href = "#service">Service</a></li>
</ul>
</div>
</section>
</div>
<br/>
<br/>
<h2>Example of Magellan Sticky Navigation</h2>
<h3 data-magellan-destination = "home">Home</h3>
<a name = "home"></a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<h3 data-magellan-destination = "about">About</h3>
<a name = "about"></a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<h3 data-magellan-destination = "service">Service</h3>
<a name = "service"></a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<script>
$(document).ready(function() {
$(document).foundation();
})
</script>
</body>
</html>
輸出
讓我們執行以下步驟,看看上述給定程式碼如何工作 -
將上面給定的 HTML 程式碼儲存在magellan_sticky_navigation.html檔案中。
在瀏覽器中開啟此 HTML 檔案,如下所示顯示輸出。
foundation_navigation.htm
廣告