博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
纯CSS写三角形-border法[晋级篇01]
阅读量:5061 次
发布时间:2019-06-12

本文共 7252 字,大约阅读时间需要 24 分钟。

纯CSS写三角形-border法[晋级篇01]

注意:所有知识点将不考虑IE6 ( ̄▽ ̄")

 

 

(1)有边框的三角形

在上一篇完成简单的后,我们来写下带边框的三角形。

如果是一个正方形,我们写边时,会用到border,但我们这里讨论的三角形本身就是border,不可能再给border添加border属性,所以我们需要用到其他办法。

最容易想到的,是叠加层。思路是将两个三角形叠加在一起,外层三角形稍大一些,颜色设置成边框所需的颜色;内层三角形绝对定位在里面。整体就能形成带边框三角形的假象。

这里就涉及到一个绝对定位的问题,上、下、左、右四种方向的三角形相对于父级定位是不同的。首先我们来看下,当定位都为0(left:0px; top:0px;)时,会发生什么。

HTML:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- 向上的三角形 -->
<
div
class
=
"triangle_border_up"
>
    
<
span
></
span
>
</
div
>
                                                     
<!-- 向下的三角形 -->
<
div
class
=
"triangle_border_down"
>
    
<
span
></
span
>
</
div
>
                                                     
<!-- 向左的三角形 -->
<
div
class
=
"triangle_border_left"
>
    
<
span
></
span
>
</
div
>
                                                     
<!-- 向右的三角形 -->
<
div
class
=
"triangle_border_right"
>
    
<
span
></
span
>
</
div
>

CSS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*向上*/
.triangle_border_up{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
30px
30px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
#333
;
/*透明 透明  灰*/
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_up span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
28px
28px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
#fc0
;
/*透明 透明  黄*/
    
position
:
absolute
;
    
top
:
0px
;
    
left
:
0px
;
}
/*向下*/
.triangle_border_down{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
30px
0
;
    
border-style
:
solid
;
    
border-color
:
#333
transparent
transparent
;
/*灰 透明 透明 */
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_down span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
28px
28px
0
;
    
border-style
:
solid
;
    
border-color
:
#fc0
transparent
transparent
;
/*黄 透明 透明 */
    
position
:
absolute
;
    
top
:
0px
;
    
left
:
0px
;
}
/*向左*/
.triangle_border_left{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
30px
30px
0
;
    
border-style
:
solid
;
    
border-color
:
transparent
#333
transparent
transparent
;
/*透明 灰 透明 透明 */
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_left span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
28px
28px
28px
0
;
    
border-style
:
solid
;
    
border-color
:
transparent
#fc0
transparent
transparent
;
/*透明 黄 透明 透明 */
    
position
:
absolute
;
    
top
:
0px
;
    
left
:
0px
;
}
/*向右*/
.triangle_border_right{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
0
30px
30px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
transparent
#333
;
/*透明 透明 透明 灰*/
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_right span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
28px
0
28px
28px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
transparent
#fc0
;
/*透明 透明 透明 黄*/
    
position
:
absolute
;
    
top
:
0px
;
    
left
:
0px
;
}

效果如图:

为什么不是我们预想的如下图的样子呢

原因是,我们看到的三角形是边,而不是真的具有内容的区域,请回忆下CSS的盒子模型的内容。

绝对定位(position:absolute),是根据相对定位父层内容的边界计算的。

再结合上篇我们最开始写的宽高为0的空div:

这个空的div,content的位置在中心,所以内部三角形是根据中心这个点来定位的。

为了看清楚一些,我们使用上一次的方法,给span增加一个阴影:

1
box-shadow:
0
0
2px
rgba(
0
,
0
,
0
,
1
);

效果如图:

这回我们明确的知道了,内部的三角形都是根据外部三角形实际内容的点来定位的,而非我们肉眼看到的三角形的边界定位。

HTML不变,CSS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*向上*/
.triangle_border_up{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
30px
30px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
#333
;
/*透明 透明  灰*/
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_up span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
28px
28px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
#fc0
;
/*透明 透明  黄*/
    
position
:
absolute
;
    
top
:
1px
;
    
left
:
-28px
;
}
/*向下*/
.triangle_border_down{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
30px
0
;
    
border-style
:
solid
;
    
border-color
:
#333
transparent
transparent
;
/*灰 透明 透明 */
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_down span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
28px
28px
0
;
    
border-style
:
solid
;
    
border-color
:
#fc0
transparent
transparent
;
/*黄 透明 透明 */
    
position
:
absolute
;
    
top
:
-29px
;
    
left
:
-28px
;
}
/*向左*/
.triangle_border_left{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
30px
30px
0
;
    
border-style
:
solid
;
    
border-color
:
transparent
#333
transparent
transparent
;
/*透明 灰 透明 透明 */
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_left span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
28px
28px
28px
0
;
    
border-style
:
solid
;
    
border-color
:
transparent
#fc0
transparent
transparent
;
/*透明 黄 透明 透明 */
    
position
:
absolute
;
    
top
:
-28px
;
    
left
:
1px
;
}
/*向右*/
.triangle_border_right{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
0
30px
30px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
transparent
#333
;
/*透明 透明 透明 灰*/
    
margin
:
40px
auto
;
    
position
:
relative
;
}
.triangle_border_right span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
28px
0
28px
28px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
transparent
#fc0
;
/*透明 透明 透明 黄*/
    
position
:
absolute
;
    
top
:
-28px
;
    
left
:
-29px
;
}

效果如图:

进一步来写气泡框的三角形,如图所示:

HTML:

1
2
3
4
5
6
<
div
class
=
"test_triangle_border"
>
    
<
a
href
=
"#"
>三角形</
a
>
    
<
div
class
=
"popup"
>
        
<
span
><
em
></
em
></
span
>纯CSS写带边框的三角形
    
</
div
>
</
div
>

CSS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.test_triangle_border{
    
width
:
200px
;
    
margin
:
0
auto
20px
;
    
position
:
relative
;
}
.test_triangle_border a{
    
color
:
#333
;
    
font-weight
:
bold
;
    
text-decoration
:
none
;
}
.test_triangle_border .popup{
    
width
:
100px
;
    
background
:
#fc0
;
    
padding
:
10px
20px
;
    
color
:
#333
    
border-radius:
4px
;
    
position
:
absolute
;
    
top
:
30px
;
    
left
:
30px
;
    
border
:
1px
solid
#333
;
}
.test_triangle_border .popup span{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
10px
10px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
#333
;
    
position
:
absolute
;
    
top
:
-10px
;
    
left
:
50%
;
/* 三角形居中显示 */
    
margin-left
:
-10px
;
/* 三角形居中显示 */
}
.test_triangle_border .popup em{
    
display
:
block
;
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
10px
10px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
#fc0
;
    
position
:
absolute
;
    
top
:
1px
;
    
left
:
-10px
;
}

 

 

(2)东北、东南、西北、西南三角形的写法

继续,来写西北方(↖),东北方(↗),西南方(↙),东南方(↘)的三角形。

原理如图:

根据颜色的划分,每个可以有两种CSS来写,分别利用不同的边来创造所需三角形。

写一个nw(↖)的例子:

HTML:

1
<
div
class
=
"triangle_border_nw"
></
div
>

CSS(1):

1
2
3
4
5
6
7
8
9
.triangle_border_nw{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
30px
30px
0
0
;
    
border-style
:
solid
;
    
border-color
:
#6c6
transparent
transparent
transparent
;
    
margin
:
40px
auto
;
    
position
:
relative
;
}

CSS(2):

1
2
3
4
5
6
7
8
9
.triangle_border_nw{
    
width
:
0
;
    
height
:
0
;
    
border-width
:
0
0
30px
30px
;
    
border-style
:
solid
;
    
border-color
:
transparent
transparent
transparent
#6c6
;
    
margin
:
40px
auto
;
    
position
:
relative
;
}

两种CSS效果均如图所示:

以上是利用CSS写三角形,晋级到

(1)有边框的三角形

(2)东北、东南、西北、西南三角形的写法

希望对大家有所帮助!( ̄▽ ̄”)

 

 

题外话:发现CSS的许多知识点都可以挖掘出一些深层的东西,很有意思~也因为有许多值得推敲的地方,所以写出来没有能做到绝对精简……

转载于:https://www.cnblogs.com/cinderlla/p/3955906.html

你可能感兴趣的文章
[高级]Android多线程任务优化1:探讨AsyncTask的缺陷
查看>>
选择器
查看>>
rownum 的使用
查看>>
Mysql与Oracle 的对比
查看>>
MVC系列博客之排球计分(三)模型类的实现
查看>>
npm安装
查看>>
阅读笔记02
查看>>
2019年春季学期第二周作业
查看>>
2014北邮计算机考研复试上机题解(上午+下午)
查看>>
mySQL 教程 第7章 存储过程和函数
查看>>
OGG同步Oracle到Kafka(Kafka Connect Handler)
查看>>
算法笔记_056:蓝桥杯练习 未名湖边的烦恼(Java)
查看>>
idea的maven项目无法引入junit
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>
页面置换算法-LRU(Least Recently Used)c++实现
查看>>
如何获取Android系统时间是24小时制还是12小时制
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
codeforces global round 1题解搬运
查看>>