纯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>

展示效果如下:

相关推荐
油丶酸萝卜别吃12 分钟前
修改chrome配置,关闭跨域校验
前端·chrome
m0_7400437327 分钟前
3、Vuex-Axios-Element UI
前端·javascript·vue.js
风止何安啊33 分钟前
一场组件的进化脱口秀——React从 “类” 到 “hooks” 的 “改头换面”
前端·react.js·面试
JS_GGbond33 分钟前
给数组装上超能力:JavaScript数组方法趣味指南
前端·javascript
前端无涯34 分钟前
Tailwind CSS v4 开发 APP 内嵌 H5:安卓 WebView 样式丢失问题解决与降级实战
前端
小邋遢2.036 分钟前
vscod 执行npm build报错:Error: Cannot find module ‘vite‘
前端·npm·node.js
是你的小橘呀37 分钟前
新手入门 React 必备:电影榜单项目核心知识点全解析
前端·javascript
yinmaisoft38 分钟前
JNPF 钉钉双向同步攻略:组织 / 用户一键打通,触发事件自动联动
前端·低代码·钉钉
梨子同志38 分钟前
Node.js Buffer 和 Stream
前端
鹏北海41 分钟前
微信扫码登录 iframe 方案中的状态拦截陷阱
前端·javascript·vue.js