用纯css实现Tab切换

Posted codelabo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用纯css实现Tab切换相关的知识,希望对你有一定的参考价值。

前言

我们在平时的网页中,经常会见到这样的优惠券或者其他的券(特征就是会有反方向的圆角)。

可能大部分前端人员为了简单,直接采用图片的方式,直接把整张图作为背景。其实这也没什么不好的,简单,方便,还没有兼容性问题,ie6跑起来都没得问题。

如果不考虑那些低旧浏览器的话,还是有办法直接用css来实现,有几个好处

  1. 扩展方便,比如之前是300 * 100的,现在要改成300 * 150的,就一行代码的事

  2. 没有图片,加载起来也更快了,也节省了带宽

思路

我们先实现大致的框架,左右两部分

<style>
html,body{  
box-sizing:border-box;  
margin:0;  
padding:20px;  
height:100%;  
background:#fadaa7; }
.coupon{  
display:inline-block;  
overflow:hidden;  
border-radius:10px; }
.coupon-left{  
float:left;  
width:150px;
height:150px;  
background:#252525; }
.coupon-con{  
float:left;  
width:350px;  
height:150px;  
background:#fff; }
</style>

<div class="coupon">  <div class="coupon-left"></div>  <div class="coupon-con"></div>
</div>

用纯css实现Tab切换

下面就来实现中间看着比较复杂的"凹槽"部分

我能想到跟圆角相关的有圆角、圆形、径向…这些吧

有人说svg也可以,确实svg什么都可以做,不光是这种形状,只要画个路径,填充一下就完事,这个比较通用,并不是这个特例,所以在这里不讨论用这个方式。
还有一个原因,svg生成的形状也是固定了的,只能等比缩放,不能做其他自适应了。

圆角

看到这样的形状,一般人可能会想会不会可以用border-radius的负值呢,毕竟像margin那些,使用负值往往可以带来意想不到的效果

.con{  
border-radius:-10px; }

很可惜,这种写法根本就是不合法的,在谷歌浏览器上打开控制台可以看到直接被删除了。

圆形

虽然说这种思路不行,但是我们可以换一种思路。

假设我们现在有一个圆,它本身没有颜色,但是它有一个黑色的边框

用纯css实现Tab切换

现在我们想象一下,假如这个圆的边框越来越大,外面有个容器如果超出就会隐藏,会发生什么呢

用纯css实现Tab切换

如果这个圆在右下角,那么就变成了这样

用纯css实现Tab切换

这不就是我们需要的吗?

现在我们用css来实现

根据上面的分析,我们背景的颜色应该是圆的边框的颜色,所以原背景要去掉

.coupon-left{  
position:relative;  
overflow:hidden;  /*background:#252525*/
}/*为了减少html的结构,我们使用伪元素*/
.coupon-left::before{  
position:absolute;  
width:20px;  
height:20px;  
top:-210px;  
right:-210px;  
border-radius:50%;  
border:200px solid #252525;/*边框只要能够覆盖整个容器就行*/
}

这样就实现了一个凹槽。

用纯css实现Tab切换

本来以为这样下去,复制一下,改写一下就完事了的,结果发现没这么简单,因为现在形状是被裁剪出来的,所以我们不能让上一个圆角把整个都覆盖,不然下面的圆角就出不来了,这时我们要用到clip裁剪功能

关于clip这里简单介绍一下,我们一般会用到rect这个功能,有四个值,分别是上右下左

clip: rect(<top>, <right>, <bottom>, <left>);

用纯css实现Tab切换

这里我们改造一下我们刚才写的样式,添加如下代码

.coupon-left::before{  
clip: rect(0,210px,285px,0); }

用纯css实现Tab切换

这样就和下半部分隔离开来了,下面做下半部分的凹槽,我们用::after,写法完全一致,注意一下坐标就行了

.coupon-left::after{  
content: '';  
position: absolute;  
top: -210px;  
display: block;
right: -210px;  
width: 20px;  
height: 20px;  
border-radius: 50%;  
border: 200px solid #252525;  
clip: rect(135px,210px,285px,0); }

用纯css实现Tab切换

这样就完美的实现了两个凹槽,右边的原理同样,下面是完整的css代码

html,body{
 box-sizing:border-box;
 margin:0;
 padding:20px;  
 height:100%;  
 background:#fadaa7; }
 .coupon{  
 display:inline-block;  
 overflow:hidden;  
 border-radius:10px; }
.coupon-left{
 float:left;  
 width:150px;  
 height:150px;  
 position:relative; }
.coupon-left::before{
 content: '';  
 position: absolute;  
 top: -210px;  
 display: block;  
 right: -210px;  
 width: 20px;  
 height: 20px;  
 border-radius: 50%;  
 border: 200px solid #252525;  
 clip: rect(0,210px,285px,0); }
.coupon-left::after{
 content: '';  
 position: absolute;  
 bottom: -210px;  
 display: block;  
 right: -210px;  
 width: 20px;  
 height: 20px;  
 border-radius: 50%;  
 border: 200px solid #252525;  
 clip: rect(135px,210px,285px,0); }
.coupon-con{  
 float:left;  
 width:350px;  
 height:150px;  
 position:relative; }
.coupon-con::before{
 content: '';  
 position: absolute;  
 top: -410px;  
 display: block;  
 left: -410px;  
 width: 20px;  
 height: 20px;  
 border-radius: 50%;  
 border: 400px solid #fff;  
 clip: rect(0,800px,485px,410px); }
.coupon-con::after{
 content: '';  
 position: absolute;  
 bottom: -410px;  
 display: block;  
 left: -410px;  
 width: 20px;  
 height: 20px;  
 border-radius: 50%;  
 border: 400px solid #fff;  
 clip: rect(335px,800px,485px,410px); }

下面是codepen演示

径向渐变

还有一个思路就是径向渐变。

关于径向渐变的具体使用可以参考张鑫旭的文章CSS3 radial-gradient径向渐变语法及辅助理解案例10则

那么怎样实现我们要的效果呢

我们先看看径向渐变的语法

radial-gradient([[<shape> || <size>] [at <position>]?,| at <position>,]?<color-stop>[,<color-stop>]+);

径向渐变由它的中心定义。

用法

{  
 background:radial-gradient(circle at 50px 50px, yellow, orange 33.33%, red 66.666%, white) }

用纯css实现Tab切换

我们把渐变的颜色改成透明到黑色的渐变

{
 background:radial-gradient(circle at 50px 50px, transparent, #252525) }

用纯css实现Tab切换

现在把透明的部分给一个距离,灰色的部分也给一个距离,让他们之前的渐变区域重合,就变成纯色了

{
 background:radial-gradient(circle at 50px 50px, transparent 20px, #252525 20px) }

用纯css实现Tab切换

现在把这个空心圆移到边缘

{
 background:radial-gradient(circle at right top, transparent 20px, #252525 20px) }

现在就是如何做出两个凹槽的问题

我们有两种方式,一种是和上面的一样,用两个伪元素拼接而成,第二种就是直接利用css3的多背景拼接

我们先说说第二种

{
 background:radial-gradient(circle at right top, transparent 20px, #252525 20px, #252525 100px, transparent 100px),radial-gradient(circle at right bottom, transparent 20px, #252525 20px, #252525 100px, transparent 100px) }

我们可以继续拼接,可能可以实现我们想要的效果

现在来说说第一种方法

我们把代码放入我们的例子当中

.coupon-left::before{
 content: '';  
 position: absolute;  
 top: 0;  
 left: 0;  
 right:0;  
 height:50%;  
 background:radial-gradient(circle at right top, transparent 10px, #252525 10px, #252525 10px) }
.coupon-left::after{
 content: '';  
 position: absolute;  
 bottom: 0;  
 left: 0;  
 right:0;  
 height:50%;  
 background:radial-gradient(circle at right bottom, transparent 10px, #252525 10px, #252525 10px) }
.coupon-con::before{
 content: '';  
 position: absolute;  
 top: 0;  
 left: 0;  
 right:0;  
 height:50%;  
 background:radial-gradient(circle at left top, transparent 10px, #252525 10px, #fff 10px) }
.coupon-con::after{
 content: '';  
 position: absolute;  
 bottom: 0;  
 left: 0;  
 right:0;  
 height:50%;  
 background:radial-gradient(circle at left bottom, transparent 10px, #252525 10px, #fff 10px)
}

怎么样,是不是很方便?里面都是相对值,意味着有更好的适应性

下面是codepen演示


https://codepen.io/xboxyan/pen/XBNEoo


小节

相比于用圆形来实现,这种径向渐变更方便扩展,写起来也容易。

但是并不是说圆形的思路不对,如果只是做一个圆形缺口的话,那种写法更方便,在思维上,也更领先一步,更能锻炼一个人的空间思考和想象能力,更有设计师角度的意味,这大概是和一般程序员思维最大的不同之处吧
径向渐变一直以来的兼容性问题要比圆角大的多,每种浏览器内核的写法都不尽相同,虽然目前都基本支持标准写法了,但平时的项目还是要注意一些。实在是兼容性要求,那只能用图片代替了,谁叫客户第一呢


以上是关于用纯css实现Tab切换的主要内容,如果未能解决你的问题,请参考以下文章

CSS3 :target伪类实现Tab切换效果

用纯js 实现两个div按钮之间的切换

JS实现下拉框切换和tab标签切换

教你如何用纯CSS写Tab切换

CSS3 :target伪类实现Tab切换效果

用纯CSS做的图片切换