jQuery UI 实例 - 工具提示框(Tooltip)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI 实例 - 工具提示(Tooltip)</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<style>
.ui-tooltip {
width: 500px;
max-width: 500px;
white-space: normal;
font-size: 14px;
}
</style>
<script>
$( function() {
$( document ).tooltip({
track: true,
show: {
effect: "slideDown",
delay: 250
},
hide: {
effect: "slideUp",
delay: 250
},
position: {
my: "left top",
at: "right bottom"
}
});
} );
</script>
</head>
<body>
<p><a href="#" title="这是一个工具提示文本。">悬停我!</a></p>
</body>
</html>
这段代码展示了如何使用jQuery UI的工具提示(Tooltip)功能。当用户将鼠标悬停在指定的链接上时,会显示一个带有自定义动画和样式的提示框。
评论已关闭