source: ether_statistics/web/resources/js/css-dock-menu/css-dock-bottom.html @ 648

Last change on this file since 648 was 588, checked in by vmipsl, 12 years ago

interface _ cloud

File size: 2.1 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5<title>CSS Mac Dock</title>
6<script type="text/javascript" src="js/jquery.js"></script>
7<script type="text/javascript" src="js/interface.js"></script>
8
9<!--[if lt IE 7]>
10 <style type="text/css">
11 .dock img { behavior: url(iepngfix.htc) }
12 </style>
13<![endif]-->
14
15<link href="style.css" rel="stylesheet" type="text/css" />
16</head>
17<body>
18<!--bottom dock -->
19<div class="dock" id="dock2">
20  <div class="dock-container2">
21  <a class="dock-item2" href="#"><span>Home</span><img src="images/home.png" alt="home" /></a> 
22  <a class="dock-item2" href="#"><span>Contact</span><img src="images/email.png" alt="contact" /></a> 
23  <a class="dock-item2" href="#"><span>Portfolio</span><img src="images/portfolio.png" alt="portfolio" /></a> 
24  <a class="dock-item2" href="#"><span>Music</span><img src="images/music.png" alt="music" /></a> 
25  <a class="dock-item2" href="#"><span>Video</span><img src="images/video.png" alt="video" /></a> 
26  <a class="dock-item2" href="#"><span>History</span><img src="images/history.png" alt="history" /></a> 
27  <a class="dock-item2" href="#"><span>Calendar</span><img src="images/calendar.png" alt="calendar" /></a> 
28  <a class="dock-item2" href="#"><span>Links</span><img src="images/link.png" alt="links" /></a> 
29  <a class="dock-item2" href="#"><span>RSS</span><img src="images/rss.png" alt="rss" /></a> 
30  <a class="dock-item2" href="#"><span>RSS2</span><img src="images/rss2.png" alt="rss" /></a> 
31  </div>
32</div>
33
34<!--dock menu JS options -->
35<script type="text/javascript">
36       
37        $(document).ready(
38                function()
39                {
40                        $('#dock2').Fisheye(
41                                {
42                                        maxWidth: 60,
43                                        items: 'a',
44                                        itemsText: 'span',
45                                        container: '.dock-container2',
46                                        itemWidth: 40,
47                                        proximity: 80,
48                                        alignment : 'left',
49                                        valign: 'bottom',
50                                        halign : 'center'
51                                }
52                        )
53                }
54        );
55
56</script>
57</body>
58</html>
Note: See TracBrowser for help on using the repository browser.