首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery 行列

2013-07-08 
jquery 队列今天看到jq中的queue,配合动画蛮有意思?? $(#start).click(function () {????? $(div).sho

jquery 队列

今天看到jq中的queue,配合动画蛮有意思

?? $("#start").click(function () {
????? $("div").show("slow");
????? $("div").animate({left:'+=400'},1000);
????? jQuery.queue( $("div")[0], "fx", function () {
????????alert($(this).queue().length);
??????? $(this).addClass("newcolor");
??????? jQuery.dequeue( this );
????? });
????? $("div").animate({left:'-=400'},1000);
????? jQuery.queue( $("div")[0], "fx", function () {
??????? $(this).removeClass("newcolor");
??????? jQuery.dequeue( this );
????? });
??? });
??? $("#stop").click(function () {
????? jQuery.queue( $("div")[0], "fx", [] );
????? $("div").stop();
??? });

?

热点排行