Jquery工作常用实例——动画功能实现

一:jQuery 函数创建自定义动画的语法:

$(selector).animate({params},[duration],[easing],[callback])

关键的参数是 params。它定义产生动画的 CSS 属性。可以同时设置多个此类属性,如下:

animate({width:"70%",opacity:0.4,marginLeft:"0.6in",fontSize:"3em"});

OK,相关需要用到的Jquery知识我们已经讲了,那么接下来看实例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script type="text/javascript" src="jquery-1.6.1.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $("#action").click(function(){       
        //注意animate修不了颜色   
            $("#con").animate({"height":"300px","margin-top":"200px"},"slow");
            $("#con").animate({"width":"300px","margin-left":"200px"},"slow");
            $("#con").animate({"height":"100px","margin-top":"10px"},"slow");
            $("#con").animate({"width":"100px","margin-left":"10px"},"slow");           
        })
    })
</script>
<style>
div{
    margin:10px;
    color:#EFF2A8
}
</style>
<title>Jquery animate动画</title>
</head>

<body>
<div><a href="#" id="action">Start to animation</a></div>
<div style="background:#00FF00;width:100px; height:100px;" id="con"></div>
</body>
</html>
如下,当我们点击“Start to animation”时,那么将开始动画,注意要先引入Jquery库,否则效果显示不出来。

 

你可能感兴趣的:(Jquery工作常用实例)