Template:Team:HokkaidoU Japan/LargeDropDown/JS

From 2014.igem.org

(Difference between revisions)
 
(14 intermediate revisions not shown)
Line 2: Line 2:
<script type="text/javascript">
<script type="text/javascript">
-
/*
 
$(function() {
$(function() {
    var $menu = $('#ldd_menu');
    var $menu = $('#ldd_menu');
-
                    var $child = $menu.find('li');
+
                     var $child  = $menu.children(".menu_button");
-
                    var $number = $child.index($child);
+
-
 
+
-
        $menu.eq($number).hover(function(){ alert($number)
+
-
            $child.find('.ldd_submenu').slideDown(300);
+
-
} ,function(){
+
-
                                          $child.find('.ldd_submenu').stop(true,true).hide();
+
-
});
+
-
});
+
-
*/
+
-
 
+
-
$(function() {
+
-
    var $menu = $('#ldd_menu');
+
-
                     var $child  = $menu.children(".menu_button")
+
-
 
+
                     $child.hover(function() {  
                     $child.hover(function() {  
                     var $number = $child.index(this);
                     var $number = $child.index(this);
-
            $child.eq($number).find('.ldd_submenu').slideDown(300);
+
 +
            $child.eq($number).find('.ldd_submenu').stop().slideDown(300);
} ,function(){  
} ,function(){  
-
                                           $child.find('.ldd_submenu').stop(true,true).slideUp(300);
+
                                           $child.find('.ldd_submenu').stop(true).slideUp(300);
 +
 
});
});
});
});
 +
</script>
</script>
</html>
</html>

Latest revision as of 13:12, 17 October 2014