- 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://127.0.0.1/custom_controls.html 的形式打开此 HTML 文件,然后显示如下所示的输出。
此示例提供了在页面各幻灯片上滑动的自定义控件。
framework7_swiper_slider.htm
广告