<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
div{
width: 50px;
height: 50px;
background-color: lightskyblue;
margin: 30px 0 30px 0;
}
</style>
<script src="../js/jquery-3.5.1.js"></script>
<script>
//自定义动画
//累积动画 +=, -=
$(function () {
$("#btn1").click(function () {
$("#box1").animate({
"width":"150px",
"height":"150px"
},1000);
});
$("#btn2").click(function () {
$("#box2").animate({
"width":"+=100px",
"height":"+=100px"
},1000);
});
});
</script>
</head>
<body>
<div id="box1"></div>
<input type="button" id="btn1" value="简单动画">
<div id="box2"></div>
<input type="button" id="btn2" value="累积动画">
</body>
</html>