当减小的像素>2*border的像素 就能正常减小
border:4px solid black;
odiv.style.width=odiv.offsetWidth-9+'px'; 9>2*4
border:4px solid black;
odiv.style.width=odiv.offsetWidth-9+'px'; 9>2*4
实际上一句就可以了,animate有队列功能,不用回调函数,并且因为jQ有方法链接功能,直接链在一起就可以了。
$(this).find('i').animate({top:"-25px",opacity:'0'},300).animate({top:"30px"}).animate({top:"20px", opacity:'1'},300);
参考资料:http://www.w3school.com.cn/jquery/jquery_chaining.asp
$(this).find('i').animate({top:"-25px",opacity:'0'},300).animate({top:"30px"}).animate({top:"20px", opacity:'1'},300);
参考资料:http://www.w3school.com.cn/jquery/jquery_chaining.asp
2017-02-13
http://pan.baidu.com/s/1kVqeuGZ 看到好多求源码的,小白手打的源码,各位有需要的凑合看看吧,大家相互参考下,共同进步,对css还不是很熟练,搞了半天才弄出来,各位多多多指教。
2017-02-04