hgbook

view it/web/hgbook.js @ 1088:0f4b18eb86c4

2.5 0 first 2 para ,1 fuzzy
author Zhaoping Sun <zhaopingsun@gmail.com>
date Sun Nov 22 21:24:19 2009 -0500 (2009-11-22)
parents
children
line source
1 $(document).ready(function() {
2 $("div.toc>p")
3 .toggle(function() { $(this).nextAll().show("normal"); },
4 function() { $(this).nextAll().hide("normal"); })
5 .hover(function() { $(this).fadeTo("normal", 0.8); },
6 function() { $(this).fadeTo("normal", 0.35); });
7 });