jquery特效代码
html<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery特效示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
#box {
width: 200px;
height: 200px;
background-color: lightblue;
margin: 50px auto;
text-align: center;
line-height: 200px;
}
</style>
</head>
<body>
<div id="box">点击按钮以淡出</div>
<button id="fadeOutBtn">淡出</button>
<script>
$(document).ready(function(){
$("#fadeOutBtn").click(function(){
$("#box").fadeOut();
});
});
</script>
</body>
</html>
在这个示例中,当用户点击按钮时,使用 jQuery 实现的 fadeOut()
方法会将 #box
元素淡出。
html<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery特效示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
#box {
width: 200px;
height: 200px;
background-color: lightblue;
margin: 50px auto;
text-align: center;
line-height: 200px;
}
</style>
</head>
<body>
<div id="box">点击按钮以滑动隐藏</div>
<button id="slideUpBtn">滑动隐藏</button>
<script>
$(document).ready(function(){
$("#slideUpBtn").click(function(){
$("#box").slideUp();
});
});
</script>
</body>
</html>
在这个示例中,当用户点击按钮时,使用 jQuery 实现的 slideUp()
方法会通过滑动效果隐藏 #box
元素。