联系我们
简单又实用的WordPress网站制作教学
当前位置:网站首页 > 网页前端技术 > 正文

JQuery动画animate的stop方法使用详解 - Web前端

作者:98wpeu发布时间:2026-08-07分类:网页前端技术浏览:4


导读:Animate语法:复制代码代码如下:$(selector).animate(styles,speed,Easing,callback)复制代码代码如下:<!doct...
Animate语法:
复制代码 代码如下:
$(selector).animate(styles,speed,Easing,callback)

复制代码 代码如下:
<!doctypehtml>
<HTML>
<head>
<metacharset="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 div {
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="停止所有动画,到达终点">
<div class="wrap">
<div></div>
</div>
<script>
function moveX(){
$('.wrap div').animate({'left':'250px'},1000).animate({'left':'0px'},1000);
} moveX();

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

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

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

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

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

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

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

标签:详解方法动画Webstopanimate


网页前端技术排行
最近发表
网站分类
标签列表