animate()是jQuery中的内置方法,用于通过CSS样式更改元素的状态。此方法还可以用于更改CSS属性,以为所选元素创建动画效果。
用法:
(selector).animate({styles}, para1, para2, para3);
“selector”是选定的元素。
参数:它接受以下指定的四个参数-
- Styles:它有助于设置新的CSS属性。
- para1:它是可选参数,用于设置参数的速度,其默认值为400毫秒。
- para2:它是可选的,它指定元素在不同位置的速度。
- para3:这是可选函数,用于在动画完成后执行。
返回值:它返回通过使用上述方法所做的更改。
代码1:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/
jquery/3.3.1/jquery.min.js"></script>
<script>
<!-- jQuery code to show animate() method -->
$(document).ready(function() {
$("#b1").click(function() {
$("#box").animate({
width: "300px"
});
$("#box").animate({
height: "300px"
});
});
});
</script>
<style>
div {
width: 100px;
height: 100px;
background-color: green;
}
#b1 {
margin-top: 10px;
}
</style>
</head>
<body>
<div id="box"></div>
<!-- click on this button -->
<button id="b1">Click Here !</button>
</body>
</html>
输出:
在点击“点击这里!”按钮之前,
单击“单击此处!”按钮后,
代码2:
在下面的代码中,所有参数都传递给该方法。
<html>
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js">
</script>
<style>
div {
background-color: green;
height: 100px;
width: 100px;
margin-top: 10px;
}
#b1 {
margin-top: 10px;
}
</style>
</head>
<body>
<div id="box"></div>
<!-- click here and animation will start -->
<button id="b1">Click Here !</button>
<!-- jQuery code to show the animate method -->
<script>
$(document).ready(function() {
$("#b1").click(function() {
$("#box").animate({
height: "200px",
width: "200px"
}, {
duration: 1000,
easing: "linear",
complete: function() {
$(this).after("<p>Reaches to maximum height and width !</p>");
}
});
});
});
</script>
</body>
</html>
输出:
在单击“Click Here”按钮之前,
单击“Click Here”按钮后,
相关用法
- JQuery last()用法及代码示例
- JQuery val()用法及代码示例
- JQuery on()用法及代码示例
- JQuery one()用法及代码示例
- JQuery eq()用法及代码示例
- JQuery has()用法及代码示例
- JQuery first()用法及代码示例
- JQuery after()用法及代码示例
- JQuery prop()用法及代码示例
- JQuery scroll()用法及代码示例
- JQuery slideUp()用法及代码示例
- JQuery addClass()用法及代码示例
- JQuery replaceAll()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | animate() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。