博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用css3实现各种图标效果(2)
阅读量:4358 次
发布时间:2019-06-07

本文共 6538 字,大约阅读时间需要 21 分钟。

原文:

写在前面

写的一模一样的css样式,结果却导致原来出来不一样的效果图。

用chrome的开发者工具查看,比较起来还是一模一样的css样式,可为什么会出现不一样的placeholder效果呢?一个白色粗体,一个灰色正常字体。

找了老半天找不到原因

后来才发现是我同事写的框架css里面代码的一句话影响到了

::-webkit-input-placeholder {
color: #a4afc6;}

可是为什么在chrome控制台看不到这句代码呢?请教了一番同事,原来是这样的。

 1、点击控制台“设置”按钮

2、按如下所示设置,选中“Show user agent shadow DOM”

3、你就会在elements控制面板里面能看到如下所示

回归正题,继续我的css各种图标。。。。

当然在开始之前,还是加上如下这段公共样式吧!

[class^="u-icon"]{
display: inline-block; color: #fff; vertical-align: middle;}

 

各种删除按钮(不用图标只能css来实现)

html代码如下:

            删除                删除                搜索更多    搜索更多    

 

页面显示效果如下:

css样式代码:

.u-icon-sel{
position: relative; -webkit-box-sizing: border-box; width: 32%; height: 32px; line-height: 30px; margin-bottom: 4px; border: 1px solid #a4afc6; border-radius: 3px; color: #a4afc6; text-align: center; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}.u-icon-sel.on{
overflow: hidden; border-color: #ff5d1d; color: #000;}.u-icon-sel.on:before{
position: absolute; right: 0; bottom: 0; width: 18px; height: 18px; background: url(http://webresource.c-ctrip.com/ResCorpMobile/R1/img/common-graphic37.png?20150423) no-repeat -23px -152px/150px 240px; content: '';}.u-icon-sel.more{
color: #6daeee;}.u-icon-deleteToggle{
width: 75px; height: 45px; line-height: 45px; text-align: center;}.u-icon-deleteToggle.Blue{
background-color: #3e74b9;}.u-icon-deleteToggle.Orange{
background-color: #ff5d1d;}/*白色垃圾桶、灰色垃圾桶图标*/.u-icon-trash,.u-icon-grayTrash{
background: url(http://webresource.c-ctrip.com/ResCorpMobile/R1/img/common-graphic37.png?20150423) no-repeat 0 0/150px 240px;}.u-icon-trash{
background-position: 0 -84px; width: 16px; height: 18px;}.u-icon-grayTrash {
display: inline-block; width: 12px; height: 18px; margin-right: 8px; vertical-align: -2px; background-position: -3px -178px;}/*不用任何图标实现删除icon效果*/.u-icon-delete{
position: absolute; bottom: 5px; right: 0; width: 40px; height: 40px;}/*给before伪类设置一个默认背景色 设置content*/.u-icon-delete:before{
position: absolute; top: 10px; left: 10px; width: 20px; height: 20px; border-radius: 20px; background-color: #8e8e93; content: ''; }/*给after伪类 -webkit-transform: rotate(-45deg);旋转 background-color: #e1e2e4;设置X的一边的颜色*/.u-icon-delete:after{
position: absolute; top: 19px; left: 14px; width: 12px; height: 2px; -webkit-transform: rotate(-45deg); background-color: #e1e2e4; content: '';}/* -webkit-transform: rotate(45deg); 运用的特别巧秒*/.u-icon-delete i{
position: absolute; top: 19px; left: 14px; width: 12px; height: 2px; background-color: #e1e2e4; -webkit-transform: rotate(45deg);}/*橙色背景中间一白色横杠的删除icon */.u-icon-del{
position: relative; width: 24px; height: 24px; border: 1px solid #ff5d1d; -webkit-border-radius: 24px; border-radius: 24px; -webkit-transition: 300ms ease-in-out; transition: 300ms ease-in-out; background-color: #ff5d1d;}.u-icon-del.on,.on .u-icon-del {
-webkit-transform: rotateZ(90deg);}/*这里的background-color: #fff;和 content: "\20";实现白色横杠*/.u-icon-del::after{
position: absolute; top: 10px; left: 4px; width: 16px; height: 4px; background-color: #fff; content: "\20";}.u-icon-radioDelete{
position: relative; width: 24px; height: 24px; border: 1px solid #8AADD8; -webkit-border-radius: 24px; border-radius: 24px; -webkit-transition: 300ms ease-in-out; transition: 300ms ease-in-out;}.u-icon-radioDelete::after{
position: absolute; top: 11px; left: 4px; width: 16px; height: 2px; background-color: #8AADD8; color: #8AADD8; content: "\20";}.u-icon-radioDelete.on,.on .u-icon-radioDelete {
-webkit-transform: rotateZ(90deg); -ms-transform: rotateZ(90deg);}

 

加加减减图标

html代码如下:

                    

 

页面显示效果如下:

css样式代码:

/*加减标签*//*加标签icon*/.u-icon-addS, .u-icon-addB{
width: 60px; height: 40px;}/*加的大icon*/.u-icon-addB{
position: relative; top: 0; right: 0;}/*加的小icon*/.u-icon-addS{
position: relative; color: #3B8FF8;}.u-icon-addS::before,.u-icon-addS::after, .u-icon-addB::before,.u-icon-addB::after{
position: absolute; top: 20px; left: 25px; width: 12px; content: "";}.u-icon-addB::before, .u-icon-addB::after{
border-top: 1px solid #fff;}.u-icon-addS::before,.u-icon-addS::after{
border-top: 2px solid #3B8FF8;}.u-icon-addB::after,.u-icon-addS::after{
-webkit-transform: rotateZ(90deg); transform: rotateZ(90deg);}/*加、减按钮*/.u-icon-plus, .u-icon-minus{
position: relative; width: 30px; height: 3px; background-color: #a9b3c9; box-shadow: 0 1px 1px #959bab inset; border-radius: 3px;}.u-icon-plus.on, .u-icon-minus.on,.on.u-icon-plus::before,.on .u-icon-plus,.on .u-icon-minus ,.on .u-icon-plus ::before{
background-color: #6daeee; box-shadow: 0 1px 1px #6a9aca inset;}.u-icon-plus::before{
position: absolute; left: 13px; width: 3px; height: 30px; border-radius: 3px; box-shadow: 1px 0 1px #959bab inset; background-color: #a9b3c9; -webkit-transform: translate(0,-13.5px); transform: translate(0,-13.5px); text-align: center; content: "";}

 

问号图标

html代码如下:

 

页面显示效果如下:

css样式代码:

.u-icon-qa {
width: 60px; height:44px; text-align: center; color: #FFFFFF; font-size: 18px;}.u-icon-qa:before {
position: absolute; top:10px; right: 15px; width: 24px; height: 24px; background: #67a5e2; -webkit-border-radius: 24px; border-radius: 24px; content: '';}.u-icon-qa:after {
position: absolute; top:10px; right: 22px; content: '?';}

 

一行被选中状态图标

html代码如下:

 

页面显示效果如下:

css样式代码:

.u-icon-checkTitle{
position: absolute; top: 9px; right: 13px; width: 16px; height: 16px; border-radius: 100%; background: #fff; content: '';}.u-icon-checkTitle::after{
position: absolute; top: 2px; right: 5px; width: 4px; height: 8px; border-width: 0 2px 2px 0; border-color: #ffa124; border-style: solid; -webkit-transform: rotate(45deg); content: '';}

未完待续(如果大家有更好的方法来实现,不用图片,可以麻烦与我交流一下,谢谢!)

如果您觉得本篇博文对您有所收获,觉得小女子还算用心,请点击右下角的 [推荐],谢谢!

posted on
2015-05-28 17:40 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/lonelyxmas/p/4536516.html

你可能感兴趣的文章
Java事件处理机制- 事件监听器的四种实现方式【转】
查看>>
CSS3伪类选择器:nth-child()
查看>>
POJ2524——Ubiquitous Religions
查看>>
UVA548——Tree(中后序建树+DFS)
查看>>
Hbase配置(伪分布式模式)
查看>>
Java导包问题
查看>>
python基础-协程函数、递归、模块、包等内容
查看>>
JNI和NDK的关系
查看>>
centos7 学习1 KDE配置中文
查看>>
C语言陷阱:浮点运算
查看>>
AngularJS XMLHttpRequest
查看>>
Java反射-方法(Method)
查看>>
移除SharePoint2013里的NoteBook笔记本链接
查看>>
数据集
查看>>
Objective-C内存管理教程和原理剖析(四)
查看>>
Android:源码环境下移植第三方的apk内置到ROM(System Image)中
查看>>
Android 之SparseArray<E>详解
查看>>
php面试的那些“黑话”
查看>>
poi快速导入导出excel表格
查看>>
修改删除修改4.1.2拨号盘和移动删除键位置
查看>>