comparison js/bt/DEMO/demofiles/logo.html @ 18:0d557e6e73f7

Added beautytips and some additional event handling code to the library.
author David Eads <eads@chicagotech.org>
date Fri, 06 Mar 2009 14:11:46 -0600
parents
children
comparison
equal deleted inserted replaced
17:1a77f87927dd 18:0d557e6e73f7
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html lang="en">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <title>
7 BeautyTips Demo Page
8 </title>
9 <meta name="author" content="Jeff Robbins">
10 <script src="../../other_libs/jquery-1.3.min.js" type="text/javascript" charset="utf-8">
11 </script>
12 <script src="../../other_libs/bgiframe_2.1.1/jquery.bgiframe.min.js" type="text/javascript" charset="utf-8">
13 </script><!--[if IE]><script src="../other_libs/excanvas_0002/excanvas-compressed.js" type="text/javascript" charset="utf-8"></script><![endif]-->
14
15 <script src="../../jquery.bt.min.js" type="text/javascript" charset="utf-8">
16 </script>
17 <script type="text/javascript">
18 $(document).ready(function(){
19 $('a').bt('<img src="beautytips.png" height="122" width="181" />', {
20 strokeStyle: '#666',
21 strokeWidth: 1,
22 cornerRadius: 25,
23 padding: 2,
24 positions: 'top',
25 spikeLength: 20,
26 spikeGirth: 15,
27 centerPointX: .9
28 });
29 });
30 </script>
31 </head>
32 <body style="text-align:center">
33 <div style="height:300px"></div>
34 <a href="hello">hello</a>
35 </body>
36 </html>