文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

CSS3如何实现单选框动画特效

2024-04-02 19:55

关注

这篇文章主要讲解了“CSS3如何实现单选框动画特效”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“CSS3如何实现单选框动画特效”吧!

HTML 代码

<div>

<input type="radio" name="radio-1" id="radio-1-1" checked="checked">

<label for="radio-1-1"></label>

<input type="radio" name="radio-1" id="radio-1-2">

<label for="radio-1-2"></label>

<input type="radio" name="radio-1" id="radio-1-3">

<label for="radio-1-3"></label>

</div>

这里,我们指定 input 标签的 type 值为 radio,并且一下所有的 radio 的 name 值都相同,这样才可以实现单选效果。对于这里的 label 中的 for 属性,为什么这么设置一开始我也不明白,后来搜索了一下这个属性的定义,反正大概的意思就是说,只要设置了这个属性,当我们点击label 元素的时候,浏览器会自动把焦点转移到 radio 上去。下面用 CSS 对HTML设置效果。

.radio-1 {        

width: 900px;        

padding: 3% 0%;        

margin: 10px auto;        

background-color: darkseagreen;        

text-align: center;

}

.radio-1 label {        

display: inline-block;        

position: relative;        

width: 28px;        

height: 28px;        

border: 1px solid #cccccc;        

border-radius: 100%;        

cursor: pointer;        

background-color: #ffffff;        

margin-right: 10px;

}

这里我们首先看一下对 label 元素的设定,其中大部分属性我都在以前的文章中介绍过了,唯一一个陌生的属性就是 cursor,这个属性是设定鼠标样式的,设置成 pointer 之后,当我们的鼠标放到 label 元素上时,鼠标样式就变成了一只手(在我电脑上是这样)。好了,下面继续来看

.radio-1 label:after {

content: "";        

position: absolute;        

width: 20px;        

height: 20px;        

top: 4px;        

left: 4px;        

background-color: #666;        

border-radius: 50%;        

transform: scale(0);        

transition: transform .2s ease-out;

}

这里我们用到了 after 选择器,为什么设置这个属性?就是为了设置如上图所示的小黑点。首先我们设置 content 属性为空,意思就是我们不需要填充任何内容,因为我们只是想设置背景色为黑色,仅此而已。还有,刚开始的时候我们设置 transform 的 scale 值为 0 ,其达到的效果就是将小黑点隐藏。

.radio-1 [type="radio"]:checked + label {        

background-color: #eeeeee;        

transition: background-color .2s ease-in;

}

.radio-1 [type="radio"]:checked + label:after {

transform: scale(1);       

transition: transform .2s ease-in;

}

注意这里使用了 + 符号,是什么意思呢?它的学名叫做 相邻同胞选择器,意思就是选择紧接在另一个元素后的元素,而且二者有相同的父元素,在这里的意思就是选中在radio 后出现的 label ,有人要问了,这么设置干嘛,直接设置 label 就是了。想象一下,在一个 非常庞大的系统中,我们可能多次使用到  label 元素,为了避免混淆,这样设置将更加准确。这里我们看到了 transition 属性,这个属性是用于设置过渡效果的。最后,将我们的 radio 隐藏掉,就大功告成了。

.radio-1 [type="radio"]{        

display: none;

}

Action two

其实看到这个动画的第一感觉就是,和上一个一模一样,除了将 transform 属性设置成 rotate,下面我就不再解释了,只要你结合上一个例子,就可以很容易做出这么一个效果,我们直接上代码:

<!DOCTYPE html><html><head>

<meta charset="UTF-8">

<title>Radio</title>

<style>

.radio-2 { width: 900px;padding: 3% 0; margin: 50px auto;  background-color: darkseagreen; text-align: center;

}

.radio-2 label { display: inline-block; width: 28px;            

height: 28px; overflow: hidden; border: 1px solid #eeeeee;            

border-radius: 100%; margin-right: 10px;  background-color: #ffffff; position: relative;cursor: pointer;

}

.radio-2 label:after { content: ""; position: absolute;top: 4px; left: 4px; width: 20px; height: 20px;  background-color: #666666; border-radius: 50%;  transform: rotate(-180deg);transform-origin: -2px 50%; transition: transform .2s ease-in;

}        

.radio-2 [type="radio"] {            

display: none;

}

.radio-2 [type="radio"]:checked + label:after{

transform: rotate(0deg);            

transition: transform .2s ease-out;

}    

</style></head><body><div>

<input type="radio" name="radio-2" id="radio-2-1" checked="checked">

<label for="radio-2-1"></label>

<input type="radio" name="radio-2" id="radio-2-2">

<label for="radio-2-2"></label>

<input type="radio" name="radio-2" id="radio-2-3">

<label for="radio-2-3"></label></div></body><ml>

感谢各位的阅读,以上就是“CSS3如何实现单选框动画特效”的内容了,经过本文的学习后,相信大家对CSS3如何实现单选框动画特效这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯