CSS3-实现单选框radio的小动画
在微信上看到一个教程文,觉得制作的小动画还是很有意思的,自己也试验了一下。一开始动画怎么都不执行(我用的HB),因为内置浏览器对css3的不兼容。加上各种浏览器前缀后就好了。但是旋转那个效果,在HB里还是不能正常播放。
总结就是:1,学习到了css3的伪类选择器还可以这样用!2,css3的动画设置还可以这样搭配!3,label可以替代radio。如果正常情况下让我想一个给radio
加动画的方法,我肯定不会想到把radio隐藏的!这是欲擒故纵啊。。。。
以下是代码:
<div class="radio1">
<h1>缩放动画</h1>
<input type="radio" name="ys" id="r1" />
<label for="r1"></label>
<input type="radio" name="ys" id="r2" />
<label for="r2"></label>
<input type="radio" name="ys" id="r3" />
<label for="r3"></label>
</div>
<div class="radio2">
<h1>旋转动画</h1>
<input type="radio" name="ys2" id="r4" />
<label for="r4"></label>
<input type="radio" name="ys2" id="r5" />
<label for="r5"></label>
<input type="radio" name="ys2" id="r6" />
<label for="r6"></label>
</div>
<style type="text/css">
body {
background-color: #EEEEEE;
}
h1{
color: #DC143C;
}
div {
border: 1px solid #DC143C;
border-radius: 12px;
margin-top: 10px;
padding: 10px;
text-align: center;
} .radio1 label {
display: inline-block;
position: relative;
width: 28px;
height: 28px;
border: 1px solid #ccc;
background-color: #FFF;
cursor: pointer;
border-radius: 50%;
margin-top: 10px;
}
/*核心就是把label变成了单选框的样式,把radio隐藏起来,因为选中label就会选中对应的额radio,所以用户不必直接选radio了,而是通过label变相的来选中radio。但好处就是label可以加动画样式。*/
/*给label的后边加一个动画*/ .radio1 label:after {
content: "";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #666;
-moz-transform: scale(0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-moz-transition: transform .5s ease-out;
-webkit-transition: transform .5s ease-out;
-o-transition: transform .5s ease-out;
-ms-transition: transform .5s ease-out;
transition: transform .5s ease-out;
}
/*把小黑点做出来,缩放为0.做出来的方法,是在label的后边加上了一个空伪类,然后填充颜色*/ .radio1 input[type="radio"]:checked+ label {
/*这既是灵活运用伪类选择器和兄弟选择器了。checked表示被选中的那个radio,+表示那个radio下边的近邻label*/
background-color: #eee;
-moz-transition: transform .2s ease-out;
-webkit-transition: transform .2s ease-out;
-ms-transition: transform .2s ease-out;
-o-transition: transform .2s ease-out;
transition: transform .2s ease-out;
} .radio1 input[type="radio"]:checked+ label:after {
-moz-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-moz-transition: transform .5s ease-out;
-webkit-transition: transform .5s ease-out;
-o-transition: transform .5s ease-out;
-ms-transition: transform .5s ease-out;
transition: transform .5s ease-out;
} .radio1 input[type="radio"] {
display: none;
}
/*radio2自己练习旋转动画*/
.radio2 label{
width: 30px;
height: 30px;
background-color: coral;
display: inline-block;
border-radius: 50%;
border: 1px solid #D2B48C;
margin-right: 5px;
position: relative;
cursor: pointer;
overflow: hidden;/*///*/
}
.radio2 label:after{
content: "";
width: 20px;
height: 20px;
background-color: #90EE90;
position: absolute;
top: 5px;
left: 5px;
border-radius: 50%;
-webkit-transform: rotate(-80deg);
-moz-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
-webkit-transform-origin: -10px 50%;
-moz-transform-origin: -10px 50%;
-ms-transform-origin: -10px 50%;
-o-transform-origin: -10px 50%;
transform-origin: -3px 50%;
-webkit-transition: transform .7s ease-out;
-moz-transition: transform .7s ease-out;
-ms-transition: transform .7s ease-out;
-o-transition: transform .7s ease-out;
transition: transform .7s ease-out;
}
.radio2 input[type="radio"]:checked + label{
background-color: #4169E1;
-webkit-transition: background-color .7s ease-out;
-moz-transition: background-color .7s ease-out;
-ms-transition: background-color .7s ease-out;
-o-transition: background-color .7s ease-out;
transition: background-color .7s ease-out;
}
.radio2 input[type="radio"]:checked +label:after{
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: transform .7s ease-out;
-moz-transition: transform .7s ease-out;
-ms-transition: transform .7s ease-out;
-o-transition: transform .7s ease-out;
transition: transform .7s ease-out;
}
.radio2 input[type="radio"]{
display: none;
}
</style>
原文作者:千里追风,原文地址:www.jianshu.com/p/cf5b4f6b0b68(来之微信公众号:前端大全)
CSS3-实现单选框radio的小动画的更多相关文章
- 微信小程序:单选框radio和复选框CheckBox
单选框radio: 可以通过color属性来修改颜色. 复选框checkbox:
- 吾八哥学Selenium(三):操作复选框checkbox/单选框radio的方法
复选框checkbox和单选框radio是web网站里经常会使用到的两个控件,那么在web自动化测试的时候如何利用Selenium来操作这俩控件呢?今天我们就来简单入门练习一下! html测试页面代码 ...
- MFC学习单选框Radio使用
创建单选框Radio ,ID号IDC_RADIO_NAME 1.获取单选框内容 int RadioState = ((CButton *)GetDlgItem(IDC_RADIO_NAME))-> ...
- 自定义单选框radio样式
<!doctype html> <html> <head> <meta charset="utf-8"> <title> ...
- jquery单选框radio绑定click事件实现和是否选中的方法
使用jquery获取radio的值,最重要的是掌握jquery选择器的使用,在一个表单中我们通常是要获取被选中的那个radio项的值,所以要加checked来筛选,比如有以下的一些radio项: 1. ...
- 单选框radio总结(获取值、设置默认选中值、样式)
单选框 radio <div class="radio-inline"> <input type="radio" name="kil ...
- jquery单选框radio绑定click事件实现方法
本文实例讲述了jquery单选框radio绑定click事件实现方法.分享给大家供大家参考. 具体实现方法如下: 复制代码代码如下: <html><head><title ...
- 单选框radio改变事件详解(用的jquery的radio的change事件)
单选框radio改变事件详解(用的jquery的radio的change事件) 一.总结 1.用的jquery的radio的change事件:当元素的值发生改变时,会发生 change 事件,radi ...
- 纯CSS3来自定义单选框radio与复选框checkbox
单选框(radio)自定义样式 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 3 ...
随机推荐
- java中的重绘
void java.awt.Container.validate()Validates this container and all of its subcomponents.这个函数更新容器及其全部 ...
- Bete冲刺第四阶段
Bete冲刺第四阶段 今日工作: web: 昨晚搞得很晚,帮队友搞定了git的问题,仓库顿时干净多了,同时已经基本完成了基础功能的接口 ios: 导入并使用了改善交互的第三方开源库,修正路径BUG 目 ...
- WPS显示无法创建对象,请确认对象已在系统注册表中注册
第一种方法:在系统的开始--所有程序找到WPS--WPS office工具--配置工具--高级--兼容设置,在这里勾选兼容第三方系统和软件. 第二种方法: xp/win7系统:拷贝packager.e ...
- vmware 在NAT模式下连接上外网
文章: http://www.2cto.com/os/201504/389011.html
- hdu2089 数位dp
不要62 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submi ...
- nodejs-helloword案例
确认正确看着了node 本例处理环境win10 创建文件helloword.js.如下图:存放位置 具体内容详细 var http = require('http'); http.createServ ...
- 数据库开发基础-SQl Server 主键、外键、子查询(嵌套查询)
主键 数据库主键是指表中一个列或列的组合,其值能唯一地标识表中的每一行.这样的一列或多列称为表的主键,通过它可强制表的实体完整性.当创建或更改表时可通过定义 PRIMARY KEY约束来创建主键.一个 ...
- Java多线程与并发库高级应用-java5线程并发库
java5 中的线程并发库 主要在java.util.concurrent包中 还有 java.util.concurrent.atomic子包和java.util.concurrent.lock子包 ...
- hadoop报错:WARN mapred.JobClient: Error reading task outputNo route to host
解决方案: /etc/sysconfig/network/etc/hosts$hostname 这三处的主机名都要一样. 具体参考:http://blog.itpub.net/28254374/vie ...
- 【matlab】输出固定位数的数字
有时候需要集中处理数字,比如处理图片,并将它们编号为000001~009963 而matlab用fprintf输出时这些数字编号时,需要指定格式: %.nd n表示n位长度.%d表示10进制数字 e. ...