-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJQueryUI_Widget Control.html
More file actions
31 lines (24 loc) · 1.22 KB
/
Copy pathJQueryUI_Widget Control.html
File metadata and controls
31 lines (24 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<head><h3><i><i><b>Tooltip Widget Control in JQuery UI</b></i></h3>
<title>Tooltip Widget Control in JQuery UI</title>
<link rel="stylesheet" href="CSS/effects.css">
<link rel="stylesheet" href="jquery-ui/jquery-ui.css">
<link rel="stylesheet" href="jquery-ui/jquery-ui.structure.css">
<link rel="stylesheet" href="jquery-ui/jquery-ui.theme.css">
</head>
<body>
<div id="div1">
<img id="img1" title="" src="images/audi_logo.jpg" width="500px">
</div>
</body>
<script type="text/javascript" src="JS/jquery.js"></script>
<script type="text/javascript" src="jquery-ui/jquery-ui.js"></script>
<script>
$("img").tooltip({
content : 'Welcome to Audi',
show: {effect:"bounce",duration: 5000},
hide:{effect:"explode",duration:2000}
//https://api.jqueryui.com/category/effects/ --> various effects can be found in this link
})
</script>
</html>