03- jQuery事件处理和动画效果
<!DOCTYPE html>
<html>
<head>
<title>jQuery 事件处理与动画效果</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
#myDiv {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
}
</style>
</head>
<body>
<button id="moveButton">移动方块</button>
<div id="myDiv"></div>
<script>
$(document).ready(function() {
$("#moveButton").click(function() {
$("#myDiv").animate({
left: '+=200px'
}, 2000);
});
});
</script>
</body>
</html>
这段代码展示了如何在点击按钮后,使用jQuery的animate
方法移动一个div
元素。当页面加载完成后,通过$(document).ready
确保按钮点击事件绑定。当按钮被点击时,#myDiv
元素向右移动200px,动画过程持续2秒。
评论已关闭