/ Published in: JavaScript
Expand |
Embed | Plain Text
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Horizontal Slide Menu</title> <link rel="stylesheet" type="text/css" href="css/style.css" /> <script type="text/javascript" src="js/soq.js"></script> <script type="text/javascript" src="js/drag.js"></script> <script type="text/javascript"> $(function(){ $.accordion = function(a1, a2){ var opcions = a2||{ start : 0, active : "active", action : "click" }; $(a1).on(opcions.action, function(){ $(a1).select(this, function(){ this.addClass(opcions.active).find('p').show(); }, function(){ this.removeClass(opcions.active).find('p').hide(); }); }).eq(opcions.start).addClass(opcions.active); }; $.accordion("ul.accordion li", { start : 1, active : "active", action : "click" }); }); </script> </head> <body> <div class="container"> <ul class="accordion"> <li> <h4>O mnie</h4> <p>Nazywam si� Piotr Filipek i mieszkam w Piotrkowie Trybunalskim. Oprócz zajmowaniem si� komputerami lubi� także jeździ� na rowerze czy też p�ywa� na basenie.</p> </li> <li> <h4>Portfolio</h4> <p>Zapraszam za kilka dni.</p> </li> <li> <h4>Projekty</h4> <p>Zapraszam za kilka dni.</p> </li> <li> <h4>Kontakt</h4> <p>Zapraszam za kilka dni.</p> </li> </ul> </div> </body> </html>
You need to login to post a comment.
