首页 > web前端 > js教程 > JQuery动画animate的stop方法使用详解

JQuery动画animate的stop方法使用详解

巴扎黑
发布: 2017-06-30 11:38:29
原创
1486 人浏览过

这篇文章主要介绍了JQuery动画animate的stop方法使用,需要的朋友可以参考下

animate语法:

代码如下:

$(selector).animate(styles,speed,easing,callback) 

代码如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>Testing</title>

<link rel="stylesheet" href="css/reset.css">

<script src="js/jquery.js"></script>

<style>

.wrap {

position

: relative;

height

: 300px;

width: 300px;

border:5px solid #FCF;

}

.wrap p {

position: absolute;

left: 0;top: 0;

height: 50px;

width: 50px;

background

: #FA0;

}

</style>

</head>

<body>

<input type="button" id="btn1" value="停止当前动画">

<input type="button" id="btn2" value="停止所有动画">

<input type="button" id="btn3" value="停止所有动画,到达终点">

<p class="wrap">

<p></p>

</p>

<script>

function moveX(){

$(&#39;.wrap p&#39;).animate({&#39;left&#39;:&#39;250px&#39;},1000).animate({&#39;left&#39;:&#39;0px&#39;},1000);

} moveX();

$(&#39;#btn1&#39;).click(function(){

$(&#39;.wrap p&#39;).stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中

clearInterval();

})

$(&#39;#btn2&#39;).click(function(){

$(&#39;.wrap p&#39;).stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中

})

$(&#39;#btn3&#39;).click(function(){

$(&#39;.wrap p&#39;).stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点

})

// .stop() // 停止当前动画

// .stop(true) // 停止所有动画

// .stop(true,true) // 停止所有动画,到达动画终点

</script>

</body>

</html>

登录后复制


.stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中

.stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中

.stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点

以上是JQuery动画animate的stop方法使用详解的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板