首页 > 代码库 > jQuery淡入淡出
jQuery淡入淡出
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>淡入淡出</title>
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js "></script>
<script>
$(function () {
$("#fadeIn").click(function () {
$("#box").fadeIn("slow");
});
$("#fadeOut").click(function () {
$("#box").fadeOut("slow");
});
$("#fadeToggle").click(function () {
$("#box").fadeToggle("slow");
})
})
</script>
<style>
#box{
height: 600px;
width: 400px;
border: 1px solid black;
background-color: lightcoral;
margin-bottom: 20px;
}
button{
margin-left: 20px;
}
</style>
</head>
<body>
<div id="box"></div>
<button id="fadeIn">fadeIn</button>
<button id="fadeOut">fadeOut</button>
<button id="fadeToggle">adeToggle</button>
</body>
</html>
jQuery淡入淡出
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。