其他分享
首页 > 其他分享> > jQuery淡入于淡出动画

jQuery淡入于淡出动画

作者:互联网

淡入与淡出

淡出操作


<html>
<head>
	<meta charset="utf-8"/>
	<title>jQuery的动画函数</title>
	<script type="text/javascript" src="js/jQuery.min.js" charset="utf-8"></script>
	<link rel="style/sheet" type="text/css" href="css/style.css"/>
	<script type="text/javascript">
		$(function(){
		//设置层淡出操作
			$(myimg).fadeOut(5000,function(){
				$(this).fadeIn(5000)
			});
		});
	</script>
</head>
<body>
	<div id="myDiv">
		<img src="images/gd.jpg" id="myimg" width="500px"/>
	</div>
</body>
</html>

使用fadeTo()观察淡出率问题

		$(function(){
		//设置淡出率
			$(myimg).fadeTo(5000,0.3,function(){});
		});

在这里插入图片描述

利用淡入于淡出实现菜单的功能

<html>
<head>
	<meta charset="utf-8"/>
	<title>jQuery的动画函数</title>
	<script type="text/javascript" src="js/jQuery.min.js" charset="utf-8"></script>
	<link rel="style/sheet" type="text/css" href="css/style.css"/>
	<script type="text/javascript">
		$(function(){
		//设置淡出率
			$("img").each(function(){
				$(this).on("mouseover",function(){
					$(this).fadeOut(200,function(){
						$(this).fadeIn(200);
					});
				});
			});
		});
	</script>
</head>
<body>
	<div id="myDiv">
		<img src="images/gd.jpg"  width="100px"/>
		<img src="images/gd.jpg"  width="100px"/>
		<img src="images/gd.jpg"  width="100px"/>
		<img src="images/gd.jpg"  width="100px"/>
		<img src="images/gd.jpg"  width="100px"/>
	</div>
</body>
</html>

在这里插入图片描述

标签:jQuery,动画,淡入,function,设置,淡出
来源: https://blog.csdn.net/qq_43386754/article/details/86497874