-
Notifications
You must be signed in to change notification settings - Fork 0
/
Width Control Jquery UI.html
33 lines (27 loc) · 1 KB
/
Width Control Jquery UI.html
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
32
33
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.structure.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.theme.css">
</head>
<body>
<div id="div1">
<h3>Introduction to JQuery UI</h3>
<img src="IMG_20200604_181220.jpg" width="200px" title="Akash" id="pic1">
</div>
</body>
<script src="jquery.js" type="text/javascript"></script>
<script src="jqueryui/jquery-ui.js" type="text/javascript"></script>
<script>
$("#pic1").tooltip({
track:true,
show:{effect:"pulsate",duration:2000},
//show:{effect:"bounce",duration:2000}
//show:{effect:"highlight",duration:2000}
//show:{effect:"explode",duration:2000}
//show:{effect:"blind",duration:2000}
hide:{effect:"explode",duration:3000}
});
</script>
</html>