- Framework7 教程
- Framework7 - 首頁
- Framework7 - 概述
- Framework7 - 環境
- Framework7 元件
- Framework7 - 圖層版式
- Framework7 - 導航欄
- Framework7 - 工具欄
- Framework7 - 搜尋欄
- Framework7 - 狀態列
- Framework7 - 側面板
- Framework7 - 內容塊
- Framework7 - 佈局網格
- Framework7 - 遮罩
- Framework7 - 預載入
- Framework7 - 進度條
- Framework7 - 列表檢視
- Framework7 - 手風琴
- Framework7 - 卡片
- Framework7 - 碎片
- Framework7 - 按鈕
- Framework7 - 動作按鈕
- Framework7 - 表單
- Framework7 - 標籤頁
- Framework7 - Swiper 滑塊
- Framework7 - 圖片瀏覽器
- Framework7 - 自動完成
- Framework7 - 拾取器
- Framework7 - 日曆
- Framework7 - 重新整理
- Framework7 - 無限滾動
- Framework7 - 訊息
- Framework7 - 訊息欄
- Framework7 - 通知
- Framework7 - 延遲載入
- Framework7 樣式
- Framework7 - 配色方案
- Framework7 - 髮絲線
- Framework7 模板
- Framework7 - 模板概述
- Framework7 - 自動編譯
- Framework7 - Template7 頁面
- Framework7 快速單擊
- Framework7 - 活動狀態
- Framework7 - 點選保持事件
- Framework7 - 點選漣漪
- Framework7 有用資源
- Framework7 - 快速指南
- Framework7 - 有用資源
- Framework7 - 討論
Framework7 - 自定義控制元件
描述
這一部分適用於選擇或在頁面各幻燈片上滑動所需的自定義控制元件。
示例
以下示例演示了在 Framework7 中使用自定義控制元件:
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width = device-width, initial-scale = 1,
maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui" />
<meta name = "apple-mobile-web-app-capable" content = "yes" />
<meta name = "apple-mobile-web-app-status-bar-style" content = "black" />
<title>Custom Controls</title>
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />
</head>
<body>
<div class = "views">
<div class = "view view-main">
<div class = "pages">
<div data-page = "home" class = "page navbar-fixed">
<div class = "navbar">
<div class = "navbar-inner">
<div class = "left"> </div>
<div class = "center">Custom Controls</div>
<div class = "right"> </div>
</div>
</div>
<div class = "page-content">
<div class = "swiper-custom">
<div class = "swiper-container">
<div class = "swiper-pagination"></div>
<div class = "swiper-wrapper">
<div class = "swiper-slide"><span>Slide 1</span></div>
<div class = "swiper-slide"><span>Slide 2</span></div>
<div class = "swiper-slide"><span>Slide 3</span></div>
<div class = "swiper-slide"><span>Slide 4</span></div>
<div class = "swiper-slide"><span>Slide 5</span></div>
<div class = "swiper-slide"><span>Slide 6</span></div>
<div class = "swiper-slide"><span>Slide 7</span></div>
</div>
</div>
<div class = "swiper-button-prev"> </div>
<div class = "swiper-button-next"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type = "text/javascript"
src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>
<style>
.swiper-custom {
position:relative;
height:100%;
}
.swiper-container {
height:100%;
}
.swiper-slide {
background:#fff;
}
.swiper-slide span {
text-align:center;
display:block;
margin:20px;
font-size:21px;
}
.swiper-pagination-bullet {
width:10px;
height:10px;
background:none;
border:1px solid #aaa;
border-radius:0 0 0 0;
opacity:1;
cursor:pointer;
}
.swiper-pagination-bullet-active {
background:#007aff;
border-color:#007aff;
}
</style>
<script>
var myApp = new Framework7();
var mySwiper = myApp.swiper('.swiper-container', {
pagination: '.swiper-pagination',
paginationHide: false,
paginationClickable: true,
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
});
</script>
</body>
</html>
輸出
讓我們執行以下步驟,看看上述程式碼如何工作:
將上述 HTML 程式碼儲存為伺服器根資料夾中的 custom_controls.html 檔案。
以 https:///custom_controls.html 的形式開啟此 HTML 檔案,然後顯示如下所示的輸出。
此示例提供了在頁面各幻燈片上滑動的自定義控制元件。
framework7_swiper_slider.htm
廣告