<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>搞代码-CSS提示信息实例-CSS应用实例(gaodaima.com)</title> <style> .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: #555; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -60px; opacity: 0; transition: opacity 1s; } .tooltip .tooltiptext::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: #555 transparent transparent transparent; } .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; } </style> </head> <body style="text-align:center;"> <h2>提示工具</h2> <p>鼠标移动到以下文本:</p> <div class="tooltip">鼠标移动到这里 <span class="tooltiptext">提示文本:例如:请打赏我啊gaodaiam</span> </div> </body> </html>
本文案例为大家展示了《CSS提示信息实例》的代码,若要看代码效果请大家点击“运行代码”按钮。
[code]<!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>搞代码-CSS提示信息实例-CSS应用实例(gaodaima.com)</title> <style> .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: #555; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -60px; opacity: 0; transition: opacity 1s; } .tooltip .tooltiptext::after { content: “”; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: #555 transparent transparent transparent; } .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; } </style> </head> <body style=”text-align:center;”> <h2>提示工具</h2> <p>鼠标移动到以下文本:</p> <div class=”tooltip”>鼠标移动到这里 <span class=”tooltiptext”>提示文本:例如:请打赏我啊gaodaiam</span> </div> </body> </html>[/code]