感觉最后那个重用代码的那段可以更简洁点,如果H大于0小于最大高度,那么就循环加count(正的会加到最大高度然后return,负的会加到0然后return),但是刚进去的时候H是最大高度或者0,所以用do-while循环,先加count再判断。——加count直到H超出中间动画过程的范围。最后在补上几句判断display变化。
2016-08-29
li span{display:none
}
li:hover a{
display:none
}
li:hover span{
display:block
}
}
li:hover a{
display:none
}
li:hover span{
display:block
}
2016-08-23
解决滑过多次显示隐藏问题 $(this).find("ul").stop().slideDown();
$(this).find("ul").stop().slideUp();
使用mousemove和mouseleave可以解决这个问题
$(this).find("ul").stop().slideUp();
使用mousemove和mouseleave可以解决这个问题
2016-08-23
var curIndex = $(this).index(), mlValue = "-" + curIndex * 100 + "%";
是给curIndex 和mlValue 这两个变量赋值的简写,
相当于:
var curIndex = $(this).index();
var mlValue = "-" + curIndex * 100 + "%";
是给curIndex 和mlValue 这两个变量赋值的简写,
相当于:
var curIndex = $(this).index();
var mlValue = "-" + curIndex * 100 + "%";