jQuery实现淡⼊淡出效果
⽤jQuery完成淡⼊淡出效果前,我们先来认识⼏个代码:
淡⼊ fadeIn([ speed , [easing] , [fn] ]),参数都可不写
淡出 fadeOut([ speed , [easing] , [fn] ]),参数都可不写
淡⼊淡出切换 fadeToggle([ speed , [easing] , [fn] ]),参数都可不写
修改透明度 fadeTo([ [speed] , opacity , [easing] , [fn] ]),注意,这⾥速度和透明度⼀定要写其中
speed是速度
easing是切换效果
fn是回调函数
那我们把上述代码放到整体代码中看下效果
完整代码如下
<!DOCTYPE html>
<html lang="en">
<head>js实现轮播图最简代码
<meta charset="UTF-8">
<title>Wellfancy</title>
<style>
div {
margin: 10px;
padding: 10px;
width: 100px;
display: none;
}
</style>
<script src="code.jquery/jquery-3.5.1.min.js"></script>
</head>
<body>
<button>淡⼊效果</button>
<button>淡出效果</button>
<button>淡⼊淡出切换</button>
<button>修改透明度</button>
<div>
<img src="images/1.jpg" >
</div>
<script>
$(function() {
$("button").eq(0).click(function() {
$("div").fadeIn(1000);
})
$("button").eq(1).click(function() {
$("div").fadeOut(1000);
})
$("button").eq(2).click(function() {
$("div").fadeToggle(1000);
});
$("button").eq(3).click(function() {
$("div").fadeTo(1000, 0.5);
});
});
</script>
</body>
</html>
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。