-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·37 lines (33 loc) · 991 Bytes
/
index.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
34
35
36
37
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr" lang="en">
<head>
<title>basic</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div class='callout_box'>
text
<div class='callout_box_top_left'></div>
<div class='callout_box_top_right'></div>
<div class='callout_box_bottom_right'></div>
<div class='callout_box_bottom_left'></div>
<div class='callout_box_side_top'></div>
<div class='callout_box_side_right'></div>
<div class='callout_box_side_bottom'></div>
<div class='callout_box_side_left'></div>
<div class='callout_arrow'></div>
</div>
</body>
<script>
$(document).ready(function()
{
$('body').click(function(e)
{
$('.callout_box').css('bottom', e.pageY);
$('.callout_box').css('left', e.pageX);
});
});
</script>
</html>