adsfasfdaf如果你需要做各种悬浮提示,比如各个方向的悬浮提示,同时带各种特效,可以参考之前分享的一篇文章:
《CSS 纯CSS提示文字,问号弹出提示文字》纯CSS集成小组件!
css content 的attr 实现 鼠标悬浮 显示 悬浮提示,
content 属性与 :before 及 :after 伪元素配合使用,来插入生成内容。
<div> <span data-tooltip="鼠标触发显示悬浮提示文字">Hover Me!!!</span> </div> <style> body{padding: 100px;} span{position: relative;display: inline-block} span:hover{cursor: pointer;} span:hover:before{ content: attr(data-tooltip); background-color: #f35; color: #fff; padding: .8em 1em; position: absolute; left: 100%; top: -70%; margin-left: 14px; white-space: pre; } span:hover:after{ content: ""; position: absolute; left: 108%; width: 0; height: 0; border-right: 8px solid #000; border-top: 8px solid transpartent; border-bottom: 8px solid transparteng; } </style>
data- 为自定义属性,如上 自定义 提示 data-tooltip ="hello world",
配合 before ,after 使用 content 的attr 调用 自定义提示,
content: attr(data-tooltip);
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有