欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-02-18 13:42:10
代码如下: $(selector).animate(styles,speed,easing,callback) . 代码如下:

代码如下:

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


. 代码如下:


<!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(){
$('.wrap p').animate({'left':'250px'},1000).animate({'left':'0px'},1000);
} movex();

$('#btn1').click(function(){
$('.wrap p').stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中
clearinterval();
})

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

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

// .stop() // 停止当前动画
// .stop(true) // 停止所有动画
// .stop(true,true) // 停止所有动画,到达动画终点
</script>
</body>
</html>


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

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

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