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 ...
随机推荐
- Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.2.3:run (default-cli) on project Maven_WebTest: Execution default-cli of goal org.codehaus.cargo:cargo-maven2-plugin:1.2.3:run failed: C
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/20 ...
- android开发------Activity生命周期
这几天工作比较忙,基本没有什么时间更新播客了. 趁着今晚有点时间,我们来简单说一下什么是Activity生命周期和它们各阶段的特征 什么是生命周期 在还没有接触android开发的时候,听到有人说Ac ...
- isinstance
class Foo: pass obj = Foo() isinstance(obj,Foo) class Foo: pass obj = Foo() isinstance(obj ,Foo) pri ...
- $(document).ready()和window.onload的区别
来源于: The window.onload event fires when a document is completely downloaded to the browser. This mea ...
- Java自己实现双向链表LinkList
/** * <p> * Node 双向链表实体类 * <p> * * @author <a href="mailto:yangkj@corp.21cn.com& ...
- Android快速开发框架LoonAndroid (转)
1.源码简介: 主要有以下模块: (1) 自动注入框架(只需要继承框架内的application既可) (2) 图片加载框架(多重缓存,自动回收,最大限度保证内存的安全性) (3) 网络请求模块(继承 ...
- Dubbo_创建Dubbo服务并在ZooKeeper注册,然后通过Jar包执行
一.安装ZooKeeper(略) 二.创建Dubbo服务 1.DemoService 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ...
- hdu 4612 强连通
题意:有一些联通的地方,如果2点间只有一条路径,这样的边叫做桥,现在让你添加一个桥,使最后的桥最少,问最少的桥使多少? 先求一次强连通分量,然后图就分成了几个块,将这几个块看做点,求出总共有多少条重建 ...
- BZOJ 1121: [POI2008]激光发射器SZK
1121: [POI2008]激光发射器SZK Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 792 Solved: 653[Submit][Sta ...
- Leetcode 400. Nth digits
解法一: 一个几乎纯数学的解法 numbers: 1,...,9, 10, ..., 99, 100, ... 999, 1000 ,..., 9999, ... # of digits: 9 ...