gpt4 book ai didi

javascript - jQuery 和 2 fadeIn 一键点击

转载 作者:行者123 更新时间:2023-11-30 18:56:23 24 4
gpt4 key购买 nike

这是让 2 个 div 一起淡入的正确方法吗? (contact_close 应该在 contact_box 的前面,作为 contact_box 的关闭按钮。

编辑:修复了一些 divnames。

Javascript

$(document).ready(function(){ 

$(".button_contact").click(function() {
$("#contact_box").fadeIn("slow");
$(".contact_close").fadeIn("slow");
});

$(".contact_close").click(function() {
$(this).fadeOut("slow");
$("#contact_box").fadeOut("slow");
});

});

CSS

body{
margin: 0;
padding: 0;
text-align: center;
background-color:#f0f2df;
}

#container{
border: solid 1px #f0f2df;
background-color:#f0f2df;
text-align: left;
margin: auto;
width: 939px;
height: 570px;
top:41px;
position:relative;
}
#contact_box{
display: none;
background-image:url(../images/bg.png);
width: 703px;
height: 379px;
position:absolute;
left:236px;
bottom:34px;

}
.contact_close{
display:none;
background-image:url(../images/close.png);
width:17px;
height:17px;
position:absolute;
right:5px;
top:135px;
}

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
<title>test</title>
<script type='text/javascript' src='js/jquery.js'></script>
<script type='text/javascript' src='js/click.js'></script>
</head>

<body>
<div id="container">
<div class="button_contact"></div>
<div id="contact_box">
<div class="contact_close"></div></div>
</div>
</body>
</html>

最佳答案

是的,没关系。

有多种方法可以做很多事情,但像这样简单的事情并不需要非常技术性的方法。

关于javascript - jQuery 和 2 fadeIn 一键点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1930629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com