我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么使用纯css实现超实用的图标库

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

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么使用纯css实现超实用的图标库

这篇文章将为大家详细讲解有关怎么使用纯css实现超实用的图标库,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

预备知识

伪元素

伪元素是一个附加至选择器末的关键词,允许你对被选择元素的特定部分修改样式。伪元素主要有:

  • ::first-letter 第一个字母的样式

  • ::first-line 首行文字的样式

  • ::before 元素头部添加的修饰

  • ::after 元素尾部添加的修饰

  • ::placeholder input的占位符样式

  • ::selection 被选中元素的样式

我个人觉得伪元素可以解释为元素的修饰,可以为元素带来额外的附加样式,属于额外的文档结构。

伪类

用来表示无法在CSS中轻松或者可靠检测到的某个元素的状态或属性,比如a标签的hover表示鼠标经过的样式,visited表示访问过的链接的样式,更多的用来描述元素状态变化时的样式,伪类主要有:

  • :link

  • :visited

  • :hover

  • :active

  • :focus

  • :lang(fr)

  • :not(s)

  • :root

  • :first-child

  • :last-child

  • :only-child

  • :nth-child(n)

  • :nth-last-child(n)

  • :first-of-type

  • :last-of-type

  • :only-of-type

  • :nth-of-type(n)

  • :nth-last-of-type(n)

  • :empty

  • :checked

  • :enabled

  • :disabled

  • :target

我们利用css伪类和伪元素可以实现很多强大的视觉效果,这里我主要介绍伪元素,如果对伪类或其他css特性感兴趣,可以看看我之前的css文章,写的很全面。

正文

先看看我们用纯css实现的图标库:

怎么使用纯css实现超实用的图标库

怎么使用纯css实现超实用的图标库

怎么使用纯css实现超实用的图标库

当然,如果我们知道了做出如上图标的css原理,那么我们就可以实现更加丰富复杂的图形,甚至可以打造自己的图标库。接下来我会介绍实现如上图标的方式和方法,并给出部分源码,方便大家学习。

原理

我们实现如上css图标是基于伪元素的,可以利用伪元素的::before和::after和content属性来为元素添加额外视觉效果,我们在上文中也介绍了伪元素的概念和类型,接下来让我们来实现它吧~

实现箭头

怎么使用纯css实现超实用的图标库

思路其实就是利用元素的::before伪元素画一个三角形,用css设置span样式为一条线并进行布局定位:

// less .arrow {     position: relative;     display: inline-block;     line-height: 0;     background-color: #ccc;     &.arrow-hor {         width: 16px;         height: 1px;     }     &.arrow-hor.right::before {         content: '';         position: absolute;         top: -4px;         right: -8px;         border: 4px solid transparent;         border-left: 4px solid #ccc;     } }  // html <span class="arrow arrow-hor right"></span>

这样就实现了一个指向右的箭头,我们用类似的方法也可以实现左箭头,上下箭头,实现双向箭头只需要加一个::after伪类并做适当定位就好了。

实现搜索图标

怎么使用纯css实现超实用的图标库

实现搜索图标实际上只需要一个圆和一根线,然后我们会用transform:ratate来实现角度倾斜,具体实现如下:

// less .search {     position: relative;     display: inline-block;     width: 12px;     height: 12px;     border-radius: 50%;     border: 1px solid #ccc;     text-align: center;     transform: rotate(-45deg);     &::after {         content: '';         display: inline-block;         width: 1px;         height: 4px;         background-color: #ccc;     } } // html <span class="search"></span>

实现头像

怎么使用纯css实现超实用的图标库

实现头像我们要利用before和after伪元素,分别做人物头部和身体,身体我们会用css画一个椭圆来做:

// less .dot-pan {     position: relative;     display: inline-flex;     width: 60px;     height: 60px;     line-height: 0;     align-items: center;     border-radius: 50%;     background-color: #06c;     transform: rotate(-90deg);     &::before {         content: '';         display: inline-block;         width: 28px;         height: 40px;         margin-left: -3px;         border-radius: 50% 50%;         flex-shrink: 0;         background-color: #fff;     }      &::after {         content: '';         display: inline-block;         width: 20px;         height: 20px;         flex-shrink: 0;         border-radius: 50%;         background-color: #fff;     } } // html <span class="search"></span>

实现地点图标

怎么使用纯css实现超实用的图标库

地点图标由一个圆和一个三角形组成,如果要做的精致一点,我们可以再用一个伪元素来做一个定点:

// less .locate-icon {     position: relative;     display: inline-block;     width: 50px;     height: 50px;     border-radius: 50%;     background-color: #06c;     &::before {         content: '';         position: absolute;         display: inline-block;         width: 12px;         height: 12px;         border-radius: 50%;         left: 50%;         top: 50%;         transform: translate(-50%, -50%);         background-color: #fff;     }     &::after {         content: '';         margin-top: 45px;         display: inline-block;         border: 15px solid transparent;         border-top-color: #06c;     } } // html <span class="locate-icon mr-20"></span>

实现微信图标

怎么使用纯css实现超实用的图标库

图中2个眼睛主要是用到一个伪元素加上box-shadow来实现,这样可以节约一个伪元素用来做小尾巴,至于如何实现不同形状的三角形,如果有不懂的可以和我交流,具体实现如下:

// less .wechat-icon {     display: inline-block;     width: 50px;     height: 50px;     border-radius: 50%;     background-color: rgb(68, 170, 59);     &::before {         content: '';         margin-top: 14px;         position: absolute;         width: 4px;         height: 4px;         border-radius: 50%;         background-color: #fff;         box-shadow: 16px 0 0 #fff;     }     &::after {         content: '';         margin-top: 42px;         display: inline-block;         border-width: 6px 10px 6px 10px;         border-style: solid;         border-color: transparent;         border-top-color: rgb(68, 170, 59);         transform: rotate(-147deg);     } } // html <span class="wechat-icon mr-20"></span>

实现对勾图标

怎么使用纯css实现超实用的图标库

这里也很简单,我们用伪元素的content里放置一个勾号,然后设置颜色大小就好啦:

// less .yes-icon {     display: inline-flex;     justify-content: center;     align-items: center;     width: 48px;     height: 48px;     background-color: green;     border-radius: 50%;     &::after {         content: '✓';         color: #fff;         font-size: 30px;         font-weight: bold;     } } // html <span class="yes-icon mr-20"></span>

实现眼睛(一般用于网站访问量图标)

怎么使用纯css实现超实用的图标库

主要是做椭圆加上一个圆形的伪元素:

.view-icon {     display: inline-flex;     justify-content: center;     align-items: center;     width: 58px;     height: 36px;     background-color: #06c;     border-radius: 50%;     &::after {         content: '';         display: inline-block;         width: 20px;         height: 20px;         border-radius: 50%;         background-color: #fff;     } }

导航图标

怎么使用纯css实现超实用的图标库

原理类似,主要思想是画两个三较形,用伪元素的三角形遮住主元素底部即可:

.gps-icon {     position: relative;     display: inline-flex;     justify-content: center;     align-items: center;     border-width: 30px 15px 30px 15px;     border-color: transparent;     border-style: solid;     border-bottom-color: #06c;     transform: translate(10px, -16px) rotate(32deg);     &::after {         position: absolute;         bottom: -48px;         content: '';         display: inline-block;         border-width: 10px 38px 30px 38px;         border-color: transparent;         border-style: solid;         border-bottom-color: #fff;     } }

实现心形图标

怎么使用纯css实现超实用的图标库

原理就是用两个伪元素实现两个椭圆,旋转重合即可:

.logo-x {     position: relative;     display: inline-flex;     width: 50px;     height: 50px;     border-radius: 50%;     background-color: rgb(212, 73, 17);     &::after {         position: absolute;         content: '';         left: 10px;         top: 12px;         display: inline-block;         width: 20px;         height: 30px;         border-radius: 50%;         background-color: #fff;         transform: rotate(135deg);     }     &::before {         position: absolute;         content: '';         right: 10px;         top: 12px;         display: inline-block;         width: 20px;         height: 30px;         border-radius: 50%;         background-color: #fff;         transform: rotate(-135deg);     } }

ps图标

怎么使用纯css实现超实用的图标库

这个也是用伪元素,一个伪元素用来做文字图形,一个用来做遮罩,来形成伪立体感:

.logo-ps {     position: relative;     display: inline-flex;     justify-content: center;     align-items: center;     width: 50px;     height: 50px;     border-radius: 8px;     background-color: rgb(15, 102, 184);     &::before {         position: absolute;         content: '';         display: inline-block;         width: 50px;         height: 40px;         background-color: rgba(255, 255, 255, .1);     }     &::after {         position: absolute;         content: 'PS';         font-size: 24px;         display: inline-block;         color: #fff;     } }

实现气泡对话框

怎么使用纯css实现超实用的图标库

和微信图标类似:

.logo-pp {     display: inline-block;     width: 150px;     height: 50px;     border-radius: 8px;     background-color: rgb(68, 170, 59);     &::before {         content: '等你下课哦!';         margin-top: 14px;         margin-left: -33px;         position: absolute;         color: #fff;     }     &::after {         content: '';         margin-top: 42px;         display: inline-block;         border-width: 6px 10px 6px 10px;         border-style: solid;         border-color: transparent;         border-top-color: rgb(68, 170, 59);         transform: rotate(-147deg) translate(-12px, 6px);     } }

由于篇幅原因,其他的图标就不一一实现了,原理都类似,笔者之前曾利用这个方案做过一套100个图标的库,成功应用于各个项目中,由于体积小不会造成额外请求,所以更加实用,但更复杂的图形就为了方便还是建议用字体图标或者svg,base64等。

关于“怎么使用纯css实现超实用的图标库”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

免责声明:

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

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

怎么使用纯css实现超实用的图标库

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么用纯CSS实现日历图标

这篇文章主要介绍“怎么用纯CSS实现日历图标”,在日常操作中,相信很多人在怎么用纯CSS实现日历图标问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么用纯CSS实现日历图标”的疑惑有所帮助!接下来,请跟着小编
2023-06-17

纯CSS代码怎么实现三角形图标

这篇文章主要介绍“纯CSS代码怎么实现三角形图标”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“纯CSS代码怎么实现三角形图标”文章能帮助大家解决问题。三角形图标
2023-07-04

怎么使用css实现特殊标志或图形

这篇文章给大家分享的是有关怎么使用css实现特殊标志或图形的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。1. 前言由于图片占的空间比较大,且图片越多,越不好管理,所以有些时候,我们可以使用一些简单的标签样式来实现
2023-06-08

怎么使用纯CSS实现手风琴效果

这篇文章将为大家详细讲解有关怎么使用纯CSS实现手风琴效果,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。实现原理:主要是利用CSS的hover属性,鼠标未移上去时,所有的li共享整个容器的宽度。当鼠标移上
2023-06-08

利用纯css实现图片翻转的效果

这篇文章将为大家详细讲解有关利用纯css实现图片翻转的效果,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。实现效果图如下直接上代码吧1, body部分代码如下:
2023-06-08

使用纯CSS、JS实现图片轮播效果的示例

小编给大家分享一下使用纯CSS、JS实现图片轮播效果的示例,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!js有什么特点1、js属于一种解释性脚本语言;2、在绝大多
2023-06-14

怎么用纯CSS实现镂空效果

小编给大家分享一下怎么用纯CSS实现镂空效果,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!background-clip: text背景被裁剪为文字的前景色。第一次是在 CSS-Tricks 看到的这个用法: 在 CSS-
2023-06-08

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录