jQuery动画效果之fadeIn,fadeOut(淡入淡出)

Posted startl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery动画效果之fadeIn,fadeOut(淡入淡出)相关的知识,希望对你有一定的参考价值。

 

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>淡入淡出</title>
</head>
<body>
<div id="div1" style="height: 200px;width:200px;background-color: rebeccapurple;display:none"></div>
<input type="button" value="fadeIn" id="fadeIn">
<input type="button" value="fadeOut" id="fadeOut">
<input type="button" value="fadeTaggle" id="fadeToggle">
<input type="button" value="fadeTo" id="fadeTo">

<script src="jquery-3.4.1.js"></script>
<script>
$(‘#fadeIn‘).click(function () {
$(‘#div1‘).fadeIn(1000);

});
$(‘#fadeOut‘).click(function () {
$(‘#div1‘).fadeOut(1000);
});
$(‘#fadeToggle‘).click(function () {
$(‘#div1‘).fadeToggle(1000);
});
$(‘#fadeTo‘).click(function () {
$("#div1").fadeTo(1000,0.3);//调整透明度
});

</script>

</body>
</html>

技术图片

 

以上是关于jQuery动画效果之fadeIn,fadeOut(淡入淡出)的主要内容,如果未能解决你的问题,请参考以下文章

[ jquery 效果 fadeIn([speed,[easing],[fn]]) fadeOut([speed,[easing],[fn]]) ] 此方法用于通过不透明度的变化来实现所有匹配元素的淡

jQuery效果-----fadeIn()fadeOut()fadeToggle()fadeTo()

jQuery - fadeIn()、fadeOut()、animate()、stop() 和闪烁

JQuery动画

zepto与jquery使用语法的区别

210 jQuery淡入淡出:fadeIn() fadeOut() fadeToggle() fadeTo()