css 三角箭头

要做效果:天猫首页分类导航白色小三角

[img]http://dl2.iteye.com/upload/attachment/0096/6078/cc50fae2-390b-3602-99c3-4fb2f53736d8.jpg[/img]

主要用css设置border的样式

首先看一下,一个普通的设置border情况
<html>
<head>
<title>test </title>
<style type="text/css">
.arrow {
width:50px;
height:50px;
border-style: solid;
border-color: red green red green;
border-width: 60px 60px 60px 60px;
}
</style>
</head>
<body>
<div class="arrow"></div>
</body>
</html>


效果图

[img]http://dl2.iteye.com/upload/attachment/0096/6080/7c84e0cc-2c22-32d5-b64e-be66b89f25c7.jpg[/img]

当把上面的样式width和height改为0时

[img]http://dl2.iteye.com/upload/attachment/0096/6082/2745ac49-c793-3a75-a869-1d3e1c3fc592.jpg[/img]

然后在把左边border的宽度该为0

[img]http://dl2.iteye.com/upload/attachment/0096/6084/8a7a92ef-501f-33a7-89db-dc484c6499a3.jpg[/img]

最后把右边border颜色改为白色

[img]http://dl2.iteye.com/upload/attachment/0096/6086/4ab2e5ff-d1c6-3c13-b536-a1c3d0626c93.jpg[/img]

白色的三角基本上就出来了。最后再包一层div,底色和三角的上下border颜色一样,
最后样式代码
<html>
<head>
<title>test </title>
<style type="text/css">
.arrow {
position:absolute;
top:30px;
right:0px;
width:0px;
height:0px;
border-style: solid;
border-color: red white;
border-width: 60px 60px 60px 0px;
}
.base{
position:absolute;
width:350px;
height:180px;
background-color:red;
}
</style>
</head>
<body>
<div class="base">
<div class="arrow"></div>
</div>
</body>
</html>


效果:

[img]http://dl2.iteye.com/upload/attachment/0096/6095/dbb7e4e0-d544-387d-9d48-75ae19bedec9.jpg[/img]


对于一个div,当width和heigth都设置为0时,这是
若border不为0,则不为0的border就会相交于一点,
每一个border方向上就会形成一个三角形。只留一边
与父元素底色不同,就会呈现三角形效果。
要使用 CSS 创建一个空心的向右三角箭头,通常会利用两个三角形叠加的方式实现。第一个三角形作为边框颜色的轮廓,第二个三角形作为背景色覆盖在其上,通过绝对定位调整两者的位置关系,从而形成空心箭头的效果。 以下是具体的实现方法: ### 创建空心右向三角箭头 #### HTML 结构 ```html <div class="box"> <span class="arrow"></span> </div> ``` #### CSS 样式 ```css .box { position: relative; width: 300px; height: 100px; border: 6px solid #555; border-radius: 20px; margin: 100px auto; background-color: #8a98ff; } .arrow { display: inline-block; position: absolute; top: 50%; left: 100%; /* 箭头指向右侧 */ transform: translateY(-50%); width: 0; height: 0; border-top: 20px solid transparent; border-bottom: 20px solid transparent; border-left: 20px solid #555; /* 外层边框颜色 */ } .arrow::after { content: ''; position: absolute; top: -14px; /* 向上偏移 */ left: 2px; /* 向右偏移,抵消边框宽度的影响 */ width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 14px solid #8a98ff; /* 内层背景色 */ } ``` ### 实现原理说明 1. **外层三角形**:通过 `border` 属性创建一个向右的三角形,设置 `border-top` 和 `border-bottom` 为透明,`border-left` 为边框颜色(如 `#555`)。 2. **内层三角形**:使用伪元素 `::after` 创建第二个三角形,其颜色与背景色一致(如 `#8a98ff`),并对其进行定位,使其部分覆盖在外层三角形上,从而形成空心效果。 3. **定位调整**:内层三角形需要进行适当的偏移,使其完全覆盖外层三角形的中心部分,这样就能形成空心的视觉效果[^3]。 ### 示例解释 - `.box` 是主容器,带有边框和圆角。 - `.arrow` 是一个向右的三角形,由 `border` 构成。 - `.arrow::after` 是内层三角形,使用 `::after` 伪元素创建,颜色与背景相同,通过定位实现覆盖效果。 这种方法可以灵活地调整箭头的大小、颜色和位置,适用于各种 UI 设计需求。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值