Plugin: Jquery jflow demo

kategoria: formularze

Plugin jQuery – jqDock

  • pobierz
  • zobacz online

index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<script type="text/javascript" src="jquery-1.2.3.min.js"></script>
<script type="text/javascript" src="jquery.jqDock.min.js"></script>
<head>
<body>
<div id="page">
  <div id="menu">
    <img src="images/favourites.png" title="Favourites" alt="" />
    <img src="images/pictures.png" title="Pictures" alt="" />
    <img src="images/music.png" title="Music" alt="" />
    <img src="images/videos.png" title="Videos" alt="" />
    <img src="images/uploads.png" title="Uploads" alt="" />
  </div>
</div>
</body></html>
Java Script
<script>
jQuery(document).ready(function($){
  $('#menu').jqDock();
});
</script>
index.html
#page {padding-top:150px; padding-bottom:20px; width:100%;}
#menu {position:absolute; top:100px; left:0; display:none;}

Napisz Komentarz