一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

CSS常用样式之绘制双箭头代码示例

时间:2020-09-02 编辑:袖梨 来源:一聚教程网

本篇文章小编给大家分享一下CSS常用样式之绘制双箭头代码示例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。

一、多次调用单箭头

实现了单箭头–就很容易实现双箭头了,这次以边框旋转为例多次调用实现双箭头。

1、边框旋转单箭头实现

css;">.arrow-right{
  
  
  display :inline-block;
  position: relative;
}
.arrow-right::after {
  content: "";
  
  
  top: 12px;
  border-8px 0 0;
  border-color: blue;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
}

效果图如下:

2、多次调用单箭头

效果图如下:

二、旋转边框直接绘制双箭头

之前通过::after伪元素绘制单箭头,现在再加上::before伪元素再绘制一个单箭头就实现纯CSS绘制双箭头了。

.arrow-right{
  
  
  display :inline-block;
  position: relative;
}
.arrow-right::before {
  content: "";
  
  
  top: 12px;
  left: 30px;
  border-8px 0 0;
  border-color: blue;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
}
.arrow-right::after {
  content: "";
  
  
  top: 12px;
  border-8px 0 0;
  border-color: blue;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
}

效果图如下:

双三角覆盖这种方式也能直接绘制双箭头,但是实现比较麻烦,不如边框旋转方式好实现就不讲了

热门栏目