jquery-slide-up.js 662 B

12345678910111213141516171819202122
  1. (function($){
  2. $.fn.extend({
  3. "slideUp":function(value){
  4. var docthis = this;
  5. //默认参数
  6. value=$.extend({
  7. "li_h":"30",
  8. "time":2500,
  9. "movetime":500
  10. },value)
  11. //向上滑动动画
  12. function autoani(){
  13. $("li:first",docthis).animate({"margin-top":-value.li_h},value.movetime,function(){
  14. $(this).css("margin-top",0).appendTo(".line");
  15. })
  16. }
  17. //自动间隔时间向上滑动
  18. var anifun = setInterval(autoani,value.time);
  19. }
  20. })
  21. })(jQuery);