码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2020-02-19 13:09:42      阅读:385      评论:0      收藏:0      [点我收藏+]

标签:type   oct   round   style   fun   html4   function   mic   png   

 

<!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(淡入淡出)

标签:type   oct   round   style   fun   html4   function   mic   png   

原文地址:https://www.cnblogs.com/startl/p/12330601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!