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

动画片效果

2012-11-05 
动画效果初始化:button开始一连串动画/button buttonstop()/button buttonstop(true)/button

动画效果
初始化:

<button>开始一连串动画</button> <button>stop()</button> <button>stop(true)</button> <button>stop(false,true)</button> <button>stop(true,true)</button><div id="panel">    <h5 name="code">$(function(){      $("button:eq(0)").click(function () {          $("#panel")            .animate({height : "150" } , 1000 )            .animate({width : "300" } , 1000 )            .hide(2000)            .animate({height : "show" , width : "show" , opacity : "show" } , 1000 )            .animate({height : "500"} , 1000 );      });      $("button:eq(1)").click(function () {          $("#panel").stop();//停止当前动画,继续下一个动画      });      $("button:eq(2)").click(function () {          $("#panel").stop(true);//清除元素的所有动画      });      $("button:eq(3)").click(function () {          $("#panel").stop(false,true);//让当前动画直接到达末状态 ,继续下一个动画      });      $("button:eq(4)").click(function () {          $("#panel").stop(true,true);//清除元素的所有动画,让当前动画直接到达末状态      });})

热点排行