html div tooltip,css实现toolTip

1. 常用border来实现三角形

原理: 宽高都不设置(即为0),只设置边框,4个边框都设置宽度(border-width),样式(border-style)和颜色(border-color)

.test {

width:0;

height: 0;

border-top: 100px solid red ;

border-bottom: 100px solid blue;

border-left: 100px solid green;

border-right: 100px solid yellow;

}

效果如图

fdfa8058a015

上面看到的都是三角形,其实想实现单个三角形只需把其他三个三角形的border-color设置为透明色就可以了

这样就实现了三角形

各种三角形

* {

margin: 0;

padding: 0;

list-style: none;

}

li {

margin-top: 50px;

}

.triangle-up {

width: 0;

height: 0;

border-left: 50px solid transparent;

border-right: 50px solid transparent;

border-bottom: 100px solid red;

}

.triangle-down {

width: 0;

height: 0;

border-left: 50px solid transparent;

border-right: 50px solid transparent;

border-top: 100px solid red;

}

.triangle-left {

width: 0;

height: 0;

border-top: 50px solid transparent;

border-right: 100px solid red;

border-bottom: 50px solid transparent;

}

.triangle-right {

width: 0;

height: 0;

border-top: 50px solid transparent;

border-left: 100px solid red;

border-bottom: 50px solid transparent;

}

.triangle-topleft {

width: 0;

height: 0;

border-top: 100px solid red;

border-right: 100px solid transparent;

}

.triangle-topright {

width: 0;

height: 0;

border-top: 100px solid red;

border-left: 100px solid transparent;

}

.triangle-bottomleft {

width: 0;

height: 0;

border-bottom: 100px solid red;

border-right: 100px solid transparent;

}

.triangle-bottomright {

width: 0;

height: 0;

border-bottom: 100px solid red;

border-left: 100px solid transparent;

}

2.css实现toolTip(实心三角箭头)

原理:

一个三角形绝对定位到主体元素边界处并连接起来

把三角形的颜色换成和主体元素一致的背景色就可以

.test {

position: relative;

width: 300px;

height: 100px;

border-radius: 20px;

margin: 100px auto;

background-color: #A5C4EC;

}

.test:before{

content: '';

display: block;

position: absolute;

bottom: -20px;

left: 80px;

border-left: 20px solid transparent ;

border-right: 20px solid transparent;

border-top: 20px solid #A5C4EC;

}

fdfa8058a015

3.css实现toolTip(空心三角箭头)源码如下

原理:

一个边框颜色的三角形绝对定位到主体元素边界处并连接起来

另一个主体元素背景色的三角形绝对定位并覆盖到第一个三角形上面

第二个三角形相较于第一个三角形定位上偏移距离应等于边框厚度

.test {

position: relative;

width: 300px;

height: 100px;

border-radius: 20px;

margin: 100px auto;

border: 6px solid blue;

background-color: #A5C4EC;

}

.test:before{

content: '';

display: block;

position: absolute;

bottom: -20px;

left: 80px;

border-left: 20px solid transparent ;

border-right: 20px solid transparent;

border-top: 20px solid blue;

}

.test:after{

content: '';

display: block;

position: absolute;

bottom: -14px;

left: 80px;

border-left: 20px solid transparent;

border-right: 20px solid transparent;

border-top: 20px solid #fff;

}

fdfa8058a015

title

Document

* {

margin: 0;

padding: 0;

}

.wrap {

width: 1000px;

margin: 0 auto;

}

/* 向下 */

.toolTip-bottom {

position: relative;

width: 300px;

height: 100px;

border: 1px solid #A5C4EC;

border-radius: 20px;

margin: 100px auto;

background-color: #fff;

}

.toolTip-bottom:before{

content: '';

display: block;

position: absolute;

bottom: -20px;

left: 80px;

border-left: 20px solid transparent ;

border-right: 20px solid transparent;

border-top: 20px solid #A5C4EC;

}

.toolTip-bottom:after{

content: '';

display: block;

position: absolute;

bottom: -17.6px;

left: 80px;

border-left: 20px solid transparent;

border-right: 20px solid transparent;

border-top: 20px solid #fff;

}

/* 向上 */

.toolTip-top {

position: relative;

width: 300px;

height: 100px;

border: 1px solid #A5C4EC;

border-radius: 20px;

margin: 100px auto;

background-color: #fff;

}

.toolTip-top:before{

content: '';

display: block;

position: absolute;

top: -20px;

left: 80px;

border-left: 20px solid transparent ;

border-right: 20px solid transparent;

border-bottom: 20px solid #A5C4EC;

}

.toolTip-top:after{

content: '';

display: block;

position: absolute;

top: -17.6px;

left: 80px;

border-left: 20px solid transparent;

border-right: 20px solid transparent;

border-bottom: 20px solid #fff;

}

/* 向左 */

.toolTip-left {

position: relative;

width: 300px;

height: 100px;

border: 1px solid #A5C4EC;

border-radius: 20px;

margin: 100px auto;

background-color: #fff;

}

.toolTip-left:before {

content: '';

display: block;

position: absolute;

left: -20px;

top: 30px;

border-top: 20px solid transparent ;

border-bottom: 20px solid transparent;

border-right: 20px solid #A5C4EC;

}

.toolTip-left:after {

content: '';

display: block;

position: absolute;

left: -18px;

top: 30px;

border-top: 20px solid transparent ;

border-bottom: 20px solid transparent;

border-right: 20px solid #fff;

}

/* 向右 */

.toolTip-right {

position: relative;

width: 300px;

height: 100px;

border: 1px solid #A5C4EC;

border-radius: 20px;

margin: 100px auto;

background-color: #fff;

}

.toolTip-right:before {

content: '';

display: block;

position: absolute;

right: -20px;

top: 40px;

border-top: 20px solid transparent ;

border-bottom: 20px solid transparent;

border-left: 20px solid #A5C4EC;

}

.toolTip-right:after {

content: '';

display: block;

position: absolute;

right: -18px;

top: 40px;

border-top: 20px solid transparent ;

border-bottom: 20px solid transparent;

border-left: 20px solid #fff;

}

效果图如下

fdfa8058a015

效果图

参考

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值