博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css实现的鼠标悬浮提示
阅读量:4959 次
发布时间:2019-06-12

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

css content 的attr 实现 鼠标悬浮 显示 悬浮提示

content 属性与 :before 及 :after 伪元素配合使用,来插入生成内容。

html:

Hover Me!!!

css:

body{        padding:100px;    }    span{        position:relative;        display:inline-block;    }    span:hover{        cursor:pointer;    }    span:hover:before{        content:attr(data-tooltip);        background:#d9444a;        color:#fff;        padding:.8em 1em;        position:absolute;        left:100%;        top:-70%;        margin-left:14px;        white-spack:pre;    }    span:hover:after{        content:" ";        position:absolute;        left:80%;        width:0;        height:0;        border-right:8px solid #d9444a;        border-top:8px solid transpatrnt;        border-bottom:8px solid transparent;    }

data- 为自定义属性,如上 自定义 提示 data-tooltip ="hello world",

配合 before ,after 使用 content 的attr 调用 自定义提示,

content: attr(data-tooltip);

转载于:https://www.cnblogs.com/aryu/p/10174176.html

你可能感兴趣的文章
LeetCode——Regular Expression Matching
查看>>
第1章第2节练习题1 递归删除指定结点
查看>>
传智播客C/C++学员荣膺微软&Cocos 2d-x黑客松最佳创新奖
查看>>
引用总结
查看>>
CSS 选择符
查看>>
数据库主库从库宕机重启后binlog数据同步
查看>>
3dmax2013卸载/安装失败/如何彻底卸载清除干净3dmax2013注册表和文件的方法
查看>>
程序的机器级表示
查看>>
JMeter3.2生成图形化HTML报告
查看>>
【NOIP模拟赛】异象石
查看>>
对象数组
查看>>
三元表达,匿名函数
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
icpc 南昌邀请赛网络赛 Max answer
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>