码迷,mamicode.com
首页 > 编程语言 > 详细

Web开发——JavaScript库(jQuery效果——动画/停止动画)

时间:2018-10-15 14:27:58      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:1.3   pre   fas   3.3   lan   nim   span   text   relative   

  jQuery animate() 方法允许您创建自定义的动画。

1、jQuery 动画 - animate() 方法

  jQuery animate() 方法用于创建自定义动画。

语法:

1 $(selector).animate({params},speed,callback);

  必需的 params 参数定义形成动画的 CSS 属性。

  可选的 speed 参数规定效果的时长。它可以取以下值:"slow"、"fast" 或毫秒。

  可选的 callback 参数是动画完成后所执行的函数名称。

  下面的例子演示 animate() 方法的简单应用;它把 <div> 元素移动到左边,直到 left 属性等于 250 像素为止:

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("button").click(function() {
15                     $("div").animate({left:250px});
16                 });
17             });
18             
19         </script>
20         
21     </head>
22     
23     <body>
24 
25         <button>开始动画</button>
26         <p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
27         <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
28         </div>
29  
30     </body>
31 </html>

  输出结果:点击按钮,div元素区域会出现从左向右的动画。

  提示:默认地,所有 HTML 元素都有一个静态位置,且无法移动。

  如需对位置进行操作,要记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute!

1.1 jQuery animate() - 操作多个属性

  请注意,生成动画的过程中可同时使用多个属性:

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("button").click(function() {
15                     $("div").animate({
16                         left:250px,
17                         opacity:0.5,
18                         height:150px,
19                         width:150px
20                     });
21                 });
22             });
23             
24         </script>
25         
26     </head>
27     
28     <body>
29 
30         <button>开始动画</button>
31         <p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
32         <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
33         </div>
34  
35     </body>
36 </html>

  提示:可以用 animate() 方法来操作所有 CSS 属性吗?

  是的,几乎可以!不过,需要记住一件重要的事情:当使用 animate() 时,必须使用 Camel 标记法书写所有的属性名,比如,必须使用 paddingLeft 而不是 padding-left,使用 marginRight 而不是 margin-right,等等。

  同时,色彩动画并不包含在核心 jQuery 库中。

  如果需要生成颜色动画,您需要从 jQuery.com 下载 Color Animations 插件。

1.2 jQuery animate() - 使用相对值

  也可以定义相对值(该值相对于元素的当前值)。需要在值的前面加上 += 或 -=:

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("button").click(function() {
15                     $("div").animate({
16                         left:250px,
17                         height:+=150px,
18                         width:+=150px
19                     });
20                 });
21             });
22             
23         </script>
24         
25     </head>
26     
27     <body>
28 
29         <button>开始动画</button>
30         <p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
31         <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
32         </div>
33  
34     </body>
35 </html>

1.3 jQuery animate() - 使用预定义的值

  您甚至可以把属性的动画值设置为 "show"、"hide" 或 "toggle":

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("button").click(function() {
15                     $("div").animate({
16                         height:toggle
17                     });
18                 });
19             });
20             
21         </script>
22         
23     </head>
24     
25     <body>
26 
27         <button>开始动画</button>
28         <p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
29         <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
30         </div>
31  
32     </body>
33 </html>

1.4 jQuery animate() - 使用队列功能

  默认地,jQuery 提供针对动画的队列功能。

  这意味着如果您在彼此之后编写多个 animate() 调用,jQuery 会创建包含这些方法调用的“内部”队列。然后逐一运行这些 animate 调用。

  举例1(隐藏,如果您希望在彼此之后执行不同的动画,那么我们要利用队列功能):

 

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("button").click(function() {
15                   var div = $("div");
16                   div.animate({height:300px,opacity:0.4},"slow");
17                   div.animate({width:300px,opacity:0.8},"slow");
18                   div.animate({height:100px,opacity:0.4},"slow");
19                   div.animate({width:100px,opacity:0.8},"slow");
20                 });
21             });
22             
23         </script>
24         
25     </head>
26     
27     <body>
28 
29         <button>开始动画</button>
30         <p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
31         <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
32         </div>
33  
34     </body>
35 </html>

  举例2(下面的例子把 <div> 元素移动到右边,然后增加文本的字号):

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("button").click(function() {
15                     var div=$("div");
16                     div.animate({left:100px},"slow");
17                     div.animate({fontSize:3em},"slow");
18                 });
19             });
20             
21         </script>
22         
23     </head>
24     
25     <body>
26 
27         <button>开始动画</button>
28         <p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
29         <div style="background:#98bf21;height:100px;width:200px;position:absolute;">HELLO</div>
30  
31     </body>
32 </html>        

2、jQuery 停止动画 - animate() 方法

  (添加草稿中内容)

3、jQuery 效果参考手册

  如需全面查阅 jQuery 效果,请访问 jQuery 效果参考手册

 

Web开发——JavaScript库(jQuery效果——动画/停止动画)

标签:1.3   pre   fas   3.3   lan   nim   span   text   relative   

原文地址:https://www.cnblogs.com/zyjhandsome/p/9790124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!