81 Zeilen
2,8 KiB
HTML
81 Zeilen
2,8 KiB
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||
|
<title>aToolTip Demos</title>
|
||
|
|
||
|
<!-- CSS -->
|
||
|
<link type="text/css" href="css/style.css" rel="stylesheet" media="screen">
|
||
|
|
||
|
<!-- aToolTip css -->
|
||
|
<link type="text/css" href="css/atooltip.css" rel="stylesheet" media="screen">
|
||
|
|
||
|
|
||
|
<!-- Scripts -->
|
||
|
<script type="text/javascript" src="js/jquery.min.js"></script>
|
||
|
|
||
|
<!-- aToolTip js -->
|
||
|
<script type="text/javascript" src="js/atooltip.min.jquery.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
$(function(){
|
||
|
$('a.normalTip').aToolTip();
|
||
|
|
||
|
|
||
|
$('a.fixedTip').aToolTip({
|
||
|
fixed: true
|
||
|
});
|
||
|
|
||
|
$('a.clickTip').aToolTip({
|
||
|
clickIt: true,
|
||
|
tipContent: 'Hello I am aToolTip with content from the "tipContent" param'
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="primaryWrapper">
|
||
|
|
||
|
<div class="branding">
|
||
|
<h1 class="logo"><a href="#">aToolTip</a></h1>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
<!-- DEMOS -->
|
||
|
|
||
|
<div class="section" id="demos">
|
||
|
<h2>Demos</h2>
|
||
|
|
||
|
<ul class="demos">
|
||
|
<li><a href="#" class="normalTip exampleTip" title="Hello, I am aToolTip">Normal Tooltip</a> - This is a normal tooltip with default settings.</li>
|
||
|
<li><a href="#" class="fixedTip exampleTip" title="Hello, I am aToolTip">Fixed Tooltip</a> - This is a fixed tooltip that doesnt follow the mouse.</li>
|
||
|
<li><a href="#" class="clickTip exampleTip" >On Click Tooltip</a> - This is a click activated tooltip with content passed in from 'tipContent' param</li>
|
||
|
</ul>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<!-- END DEMOS -->
|
||
|
|
||
|
|
||
|
<p class="copyright">
|
||
|
Copyright © 2009 Ara Abcarians. aToolTip was built for use with <a href="http://jquery.com">jQuery</a> by <a href="http://ara-abcarians.com/"> Ara Abcarians.</a>
|
||
|
</p>
|
||
|
|
||
|
<p class="license">
|
||
|
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://creativecommons.org/images/public/somerights20.png"></a><br>This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>.
|
||
|
</p>
|
||
|
|
||
|
|
||
|
</div> <!-- /primaryWrapper -->
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|