纯CSS实现中间透明的关闭图标

一、背景和意义

关闭图标是网页中最常见的图标之一。有时候为了美观,需要把关闭图标中间的叉叉做做透明的:

让UI设计师弄一个中间透明的png图片是一种解决方案,但相比之下纯CSS实现的关闭图标占用流量更少、加载速度快、且方便修改图标的颜色。本文给出纯CSS实现中间透明的关闭图标的简单示例。

二、代码示例

2.1 创建背景图

首先,为了方便看出中间透明的效果,先弄一张windows操作系统的经典背景图:

html 复制代码
<style>
    .origin {
        width: 320px;
        height: 240px;
        background-size: cover;
        background-image: url("https://5b0988e595225.cdn.sohucs.com/images/20171010/2ab85e31fee24a36b3e9bb79d71885b2.jpeg");
    }
</style>
<div class="origin">
</div>

效果如下:

2.2 用svg画叉叉图标

用svg画叉叉还比较简单,先从(0, 0)到(100, 100)两个坐标之间画一条从左上到右下的线,再从(0, 100)到(100, 0)两个坐标之间画一条从左下到右上的线:

html 复制代码
<style>
    .origin {
        width: 320px;
        height: 240px;
        background-size: cover;
        background-image: url("https://5b0988e595225.cdn.sohucs.com/images/20171010/2ab85e31fee24a36b3e9bb79d71885b2.jpeg");
    }
    .line {
        stroke: #888;
        stroke-width: 17;
    }
</style>
<div class="origin">
    <svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 100 100">
        <line class="line" x1="0" y1="0" x2="100" y2="100" />
        <line class="line" x1="0" y1="100" x2="100" y2="0" />
    </svg>
</div>

展示效果为:

2.3 调整叉叉的大小和背景

给svg外面包一层a标签,控制其大小,并使用白色做为背景色:

html 复制代码
<style>
    .origin {
        width: 320px;
        height: 240px;
        background-size: cover;
        background-image: url("https://5b0988e595225.cdn.sohucs.com/images/20171010/2ab85e31fee24a36b3e9bb79d71885b2.jpeg");
    }
    .close {
        display: block;
        background-color: #fff;
        padding: 0.75rem;
        width: 2rem;
        border-radius: 50%;
    }
    .line {
        stroke: #888;
        stroke-width: 17;
    }
</style>
<div class="origin">
    <a class="close" href="javascript:void(0)">
        <svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 100 100">
            <line class="line" x1="0" y1="0" x2="100" y2="100" />
            <line class="line" x1="0" y1="100" x2="100" y2="0" />
        </svg>
    </a>
</div>

为了方便对比,这里特意地将图标做得大一些,当然在实际应用中一般不做那么大。展示效果如下:

2.4 将图标中间叉叉变透明

为图标增加mix-blend-mode属性,取值hard-light,可以将叉叉变成透明,修改后的代码如下:

html 复制代码
<style>
    .origin {
        width: 320px;
        height: 240px;
        background-size: cover;
        background-image: url("https://5b0988e595225.cdn.sohucs.com/images/20171010/2ab85e31fee24a36b3e9bb79d71885b2.jpeg");
    }
    .close {
        mix-blend-mode: hard-light;
        display: block;
        background-color: #fff;
        padding: 0.75rem;
        width: 2rem;
        border-radius: 50%;
    }
    .line {
        stroke: #888;
        stroke-width: 17;
    }
</style>
<div class="origin">
    <a class="close" href="javascript:void(0)">
        <svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 100 100">
            <line class="line" x1="0" y1="0" x2="100" y2="100" />
            <line class="line" x1="0" y1="100" x2="100" y2="0" />
        </svg>
    </a>
</div>

运行效果为:

2.5 其他优化

关闭图标一般放右上角,给图标加一个float: right可以将其挪到右上角,另外图标内的叉叉四个角太尖锐不好看,增加border-radius: 0.15rem可以变圆润一点:

html 复制代码
<style>
    .origin {
        width: 320px;
        height: 240px;
        background-size: cover;
        background-image: url("https://5b0988e595225.cdn.sohucs.com/images/20171010/2ab85e31fee24a36b3e9bb79d71885b2.jpeg");
    }
    .close {
        float: right;
        mix-blend-mode: hard-light;
        display: block;
        background-color: #fff;
        padding: 0.75rem;
        width: 2rem;
        border-radius: 50%;
    }
    .close svg {
        border-radius: 0.15rem;
    }
    .line {
        stroke: #888;
        stroke-width: 17;
    }
</style>
<div class="origin">
    <a class="close" href="javascript:void(0)">
        <svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 100 100">
            <line class="line" x1="0" y1="0" x2="100" y2="100" />
            <line class="line" x1="0" y1="100" x2="100" y2="0" />
        </svg>
    </a>
</div>

展示效果如下:

相关推荐
一条上岸小咸鱼6 分钟前
Kotlin 基本数据类型(五):Array
android·前端·kotlin
大明889 分钟前
用 mouseover/mouseout 事件代理模拟 mouseenter/mouseleave
前端·javascript
小杨梅君11 分钟前
vue3+vite中使用自定义element-plus主题配置
前端·element
一个专注api接口开发的小白16 分钟前
Python + 淘宝 API 开发:自动化采集商品数据的完整流程
前端·数据挖掘·api
林太白16 分钟前
Nuxt.js搭建一个官网如何简单
前端·javascript·后端
晴空雨17 分钟前
一个符号让 indexOf 判断更优雅!JavaScript 位运算的隐藏技巧
前端·javascript
摸着石头过河的石头17 分钟前
前端调试全攻略:从PC到移动端的一站式实战指南
前端·debug
小猪猪屁19 分钟前
🚀 用 Nuxt3 打造公司官网:一场从 0 到 1 的实战冒险
前端
傅里叶35 分钟前
Flutter在OrangePi 5 Plus上视频播放锁死问题
前端·flutter
古夕1 小时前
my-first-ai-web_问题记录03——NextJS 项目框架基础扫盲
前端·javascript·react.js