div+css样式自制带小三角的tooltips效果
发布时间:2017-10-11 11:32:42 作者:佚名
我要评论
这篇文章主要介绍了 div+css样式自制带小三角的tooltips效果,需要的朋友可以参考下
代码和效果图如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
.tooltips {
position: relative;
width: 300px;
height: 80px;
line-height: 60px;
background: #D7E7FC;
border-radius: 4px;
}
.arrow {
position: absolute;
color: #D7E7FC;
width: 0px;
height: 0px;
line-height: 0px;
border-width: 20px 15px 0;
border-style: solid dashed dashed dashed;
border-left-color: transparent;
border-right-color: transparent;
bottom: -20px;
right: 50%;
}
.tooltips {
position: relative;
width: 300px;
height: 80px;
line-height: 60px;
background: #D7E7FC;
border: 1px solid #A5C4EC;
border-radius: 4px;
}
.arrow {
position: absolute;
width: 0px;
height: 0px;
line-height: 0px;
border-width: 20px 15px 0;
border-style: solid dashed dashed dashed;
border-left-color: transparent;
border-right-color: transparent;
}
.arrow-border {
color: #A5C4EC;
bottom: -20px;
right: 50%;
}
.arrow-bg {
color: #D7E7FC;
bottom: -19px;
right: 50%;
}
</style>
</head>
<body>
<!--先定义一个相对定位的盒子div:-->
<div class="tooltips">
<!--给div盒子添加一个三角型图标-->
<div class="arrow "></div>
<!--给“小三角穿上松紧带”需要使用两个三角形叠加的方式-->
<!--首先我们定义两个三角形的div,一个背景色和盒子的边框颜色相同,一个背景色和盒子的背景色一致:-->
<div class="arrow arrow-border"></div>
<div class="arrow arrow-bg"></div>
<!--注意:.arrow-bg和.arrow-border的bottom位置相差为1px(可根据边框宽度调整)两个div的顺序不可颠倒。-->
</div>
</body>
</html>
效果展示图

总结
以上所述是小编给大家介绍的 div+css样式自制带小三角的tooltips效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
相关文章
CSS3 函数技巧 用css 实现js实现的事情(clac Counters Tooltip)
这篇文章主要介绍了如何使用CSS3代码更好实现js中效果,clac Counters Tooltip等功能使得代码更为简洁明了,需要的朋友可以参考下2017-08-15- 这篇文章主要为大家介绍了利用纯CSS3打造的自定义Tooltip边框的应用,今天的这款Tooltip却可以用CSS3来自定义边框,边框呈涂鸦风格。用CSS3实现自定义边框的好处是可以自适2014-11-05
用简单的jquery+CSS创建自定义的a标签title提示tooltip
这篇文章主要介绍了用简单的jquery+CSS创建自定义的a标签title提示tooltip,需要的朋友可以参考下2014-05-21- 本篇文章,小编为大家介绍关于CSS Tooltips(鼠标经过时显示)的效果,有需要的朋友可以参考一下2013-04-10
- 有很多新手朋友不知道如何使用css制作带小三角的tooltip提示框,本人研究整理了一下,晒出来和大家分享,希望可以帮助你们2012-12-05
这篇文章主要介绍了纯css实现漂亮又健壮的tooltip的方法的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-09-04



最新评论