2010-10-26 12:47:31 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2011-05-28 00:52:13 +00:00
|
|
|
<meta charset="utf-8">
|
2010-10-26 12:47:31 +00:00
|
|
|
<title>jQuery UI Tooltip - Custom animation demo</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2014-06-10 11:55:45 +00:00
|
|
|
<script src="../../external/jquery/jquery.js"></script>
|
2013-12-02 18:36:12 +00:00
|
|
|
<script src="../../ui/core.js"></script>
|
|
|
|
<script src="../../ui/widget.js"></script>
|
|
|
|
<script src="../../ui/position.js"></script>
|
|
|
|
<script src="../../ui/tooltip.js"></script>
|
|
|
|
<script src="../../ui/effect.js"></script>
|
|
|
|
<script src="../../ui/effect-explode.js"></script>
|
2011-05-28 00:52:13 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<script>
|
2010-10-26 12:47:31 +00:00
|
|
|
$(function() {
|
2011-05-28 14:18:39 +00:00
|
|
|
$( "#show-option" ).tooltip({
|
2011-04-15 14:49:29 +00:00
|
|
|
show: {
|
2011-04-21 12:30:42 +00:00
|
|
|
effect: "slideDown",
|
|
|
|
delay: 250
|
2011-05-28 14:18:39 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#hide-option" ).tooltip({
|
2011-04-15 14:49:29 +00:00
|
|
|
hide: {
|
2011-05-28 14:18:39 +00:00
|
|
|
effect: "explode",
|
2011-05-02 11:11:58 +00:00
|
|
|
delay: 250
|
2010-10-26 12:47:31 +00:00
|
|
|
}
|
|
|
|
});
|
2011-05-30 22:42:06 +00:00
|
|
|
$( "#open-event" ).tooltip({
|
|
|
|
show: null,
|
2011-05-28 14:18:39 +00:00
|
|
|
position: {
|
|
|
|
my: "left top",
|
2011-05-30 22:42:06 +00:00
|
|
|
at: "left bottom"
|
|
|
|
},
|
|
|
|
open: function( event, ui ) {
|
|
|
|
ui.tooltip.animate({ top: ui.tooltip.position().top + 10 }, "fast" );
|
2011-05-28 14:18:39 +00:00
|
|
|
}
|
|
|
|
});
|
2010-10-26 12:47:31 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2011-05-28 14:18:39 +00:00
|
|
|
<p>There are various ways to customize the animation of a tooltip.</p>
|
2011-05-28 21:14:42 +00:00
|
|
|
<p>You can use the <a id="show-option" href="http://jqueryui.com/demos/tooltip/#option-show" title="slide down on show">show</a> and
|
|
|
|
<a id="hide-option" href="http://jqueryui.com/demos/tooltip/#option-hide" title="explode on hide">hide</a> options.</p>
|
2011-05-30 22:42:06 +00:00
|
|
|
<p>You can also use the <a id="open-event" href="http://jqueryui.com/demos/tooltip/#event-open" title="move down on show">open event</a>.</p>
|
2010-10-26 12:47:31 +00:00
|
|
|
|
|
|
|
<div class="demo-description">
|
2011-05-30 22:42:06 +00:00
|
|
|
<p>This demo shows how to customize animations using the show and hide options,
|
|
|
|
as well as the open event.</p>
|
2012-09-10 15:33:46 +00:00
|
|
|
</div>
|
2010-10-26 12:47:31 +00:00
|
|
|
</body>
|
|
|
|
</html>
|