ionic[toggle][checkbox]

toggle

 1 <!DOCTYPE html>
 2 <html lang="zh-cn">
 3 <head>
 4     <meta charset="UTF-8">
 5     <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-
 6
 7 scalable=no"/>
 8     <title>ionic应用</title>
 9     <link rel="stylesheet" href="css/ionic.min.css"/>
10 </head>
11 <body>
12
13 <div class="bar bar-header">
14     <div class="h1 title">切换</div>
15
16     <div class="content has-header">
17         <ul class="list">
18             <li class="item item-toggle">
19                 HTML5
20                 <label class="toggle">
21                     <input type="checkbox" checked/>
22                     <div class="track">
23                         <div class="handle"></div>
24                     </div>
25                 </label>
26             </li>
27             <li class="item item-toggle">
28                 HTML5
29                 <label class="toggle toggle-positive">
30                     <input type="checkbox"/>
31                     <div class="track">
32                         <div class="handle"></div>
33                     </div>
34                 </label>
35             </li>
36         </ul>
37     </div>
38 </div>
39
40 <script src="js/ionic.bundle.min.js"></script>
41
42 </body>
43 </html>

checkbox

 1 <div class="bar bar-header">
 2     <div class="h1 title">复选框</div>
 3
 4     <div class="content has-header">
 5         <ul class="list">
 6             <li class="item item-checkbox">
 7                 <label class="checkbox">
 8                     <input type="checkbox" checked/>
 9                 </label>
10                 xxx
11             </li>
12             <li class="item item-checkbox">
13                 <label class="checkbox">
14                     <input type="checkbox"/>
15                 </label>
16                 xxx
17             </li>
18         </ul>
19     </div>
20 </div>

时间: 2024-10-18 13:38:06

ionic[toggle][checkbox]的相关文章

Ionic学习笔记1_基本布局

<body> <!-- 头部 -->                               bar里嵌入子元素:title,button,button-bar和 input <div class="bar bar-header bar-dark item-input-inset"> <h1 class="title">Header</h1>                      布局?  item

checkbox in iOs

UIButton *checkbox; BOOL checkBoxSelected; checkbox = [[UIButton alloc] initWithFrame:CGRectMake(x,y,20,20) // 20x20 is the size of the checckbox that you want // create 2 images sizes 20x20 , one empty square and // another of the same square with t

Calabash-android 预定义steps

Calabash-android目录下的canned_steps.md中列出了一系列预定义的steps,这些steps的定义位于calabash-android\steps\目录下.本文将介绍这些steps和用法. 1.断言steps:定义在assert_steps.rb中 断言看到了文本: Then /^I see the text "([^\"]*)"$/ Then /^I see "([^\"]*)"$/ Then /^I should s

Angular2 ng-content 在组件中嵌入内容

ng-content指令可以在组件中嵌入模板代码,方便定制可复用的组件.比如:页面的header是个通用组件,导航菜单样式已经设定好,只需在header标签内加上菜单内容.源码以前文为基础. 父组件使用方法: <app-header #header [title]="title" name="{{name}}" (checkEmitter)="onCheckedChange($event)" > <menu> <ul

create Context Menu in Windows Forms application using C# z

In this article let us see how to create Context Menu in Windows Forms application using C# Introduction In this article we will see how to create Context Menu or Popup Menu or Shortcut menu in Windows Forms application with ContextMenuStrip control

移动应用测试框架—Calabash Android 简介

什么是 Calabash? Calabash 是一个自动化测试框架,它可以测试?android?和 iOS 原生应用和混合应用. 它有:  calabash-android  calabash-ios  主页:? http://calabash.sh Calabash-android介绍  Calabash-android 是支持 android 的 UI 自动化测试框架,PC 端使用了 cucumber 框架,通过 http 和 json 与模拟器和真机上安装的测试 apk 通信,测试 apk

ckeckbox的默认样式,label for添加toggle后失效,美化checkbox

首先要来吐槽一下火狐浏览器,缓存还是记住的checkbox的状态怎么样的.反正我先打开网页,再修改checkbox,添加一个checked true,默认选中,刷新火狐的页面,竟然没有效果,用其他浏览器测试都有效果....火狐要关闭当前网页,再打开才行,坑.....我测试在其他浏览器中修改checked,然后刷新页面,其他浏览器都可以看到修改后的状态,唯独,火狐,,,要关闭页面再打开才行.... 再说一个,之所以for绑定表单的原理是,绑定了点击事件,触发了表单中元素的点击事件,所以我想在一个l

ionic-CSS:ionic checkbox(复选框)

ylbtech-ionic-CSS:ionic checkbox(复选框) 1.返回顶部 1. ionic checkbox(复选框) ionic 里面的 Checkbox 和普通的 Checkbox 效果上其实相差不大,只是样式上有所不同. 以下实例演示了多个复选框的列表. 注意,每个选项的 item 类后需要添加 item-checkbox 类. 复选框可以使用 checkbox-assertive 来指定颜色. <ul class="list"> <li cla

可分组的选择框控件(MVVM下)(Toggle样式 仿造单选框RadioButton,复选框CheckBox功能)

原地址: http://www.cnblogs.com/yk250/p/5660340.html 效果图如下:支持分组的单选框,复选框样式和MVVM下功能的实现.这是项目中一个快捷键功能的扩展. 1,准备工作:VS2015 (15对WPF的支持变得异常的好,调试模式下允许自动更改属性.),随VS发布的Blend,几个基础类: 1 public class RelayCommand : ICommand 2 { 3 #region Fields 4 5 readonly Action<object