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 ...
随机推荐
- 踩到一个Emit的坑,留个纪念
重现代码: var dmFoo = new DynamicMethod("Foo", typeof(void), Type.EmptyTypes); var ilFoo = dmF ...
- 三言两语聊Python模块–文档测试模块doctest
doctest是属于测试模块里的一种,对注释文档里的示例进行检测. 给出一个例子: splitter.pydef split(line, types=None, delimiter=None): &q ...
- js的Object和Function
自己闲的没事干,自己想通过js的了解写一个Function和Object之间的关系,可以肯定的是我写错了,但是希望可以有所启发. Function和Object Function.__proto__ ...
- java web 100个知识点
http://wenku.baidu.com/link?url=ns5SvKesJSLzpcTckBKsFopqgbC6O0XBuVBS1BZwtJbK1P-aYbNV3fVOU9lYTbGQwKYK ...
- Rootkit Hunter恶意程序查杀
恶意程序,恶意代码检测 下载:https://pkgs.org/search/rkhunter 安装:rpm -ivh rkunter* Installed: #需要先安装 lsof.x86_64 ...
- Spring学习进阶(二)Spring IoC
在使用Spring所提供的各种丰富而神奇的功能之前,必须在Spring IoC容器中装配好Bean,并建立Bean与Bean之间的关联关系.控制反转(Inverser of Control ioc)是 ...
- 70 sudo-用来以其他身份来执行命令
sudo命令用来以其他身份来执行命令,预设的身份为root.在/etc/sudoers中设置了可执行sudo指令的用户.若其未经授权的用户企图使用sudo,则会发出警告的邮件给管理员.用户使用sudo ...
- 11-cp 命令总结
- mysql 索引2
/* 所有MySQL列类型可以被索引.根据存储引擎定义每个表的最大索引数和最大索引长度. 所有存储引擎支持每个表至少16个索引,总索引长度至少为256字节.大多数存储引擎有更高的限制. 索引的存储类型 ...
- Android 二维码 生成和识别(转)
原博客地址 :http://www.cnblogs.com/weixing/archive/2013/08/28/3287120.html 还有几个写的也可以参考一下:http://www.itnos ...