我有一個div
元素。通過點擊它,它會顯示用於登錄的其他div
。登錄div
包含另一個div
,login-close
,它會在點擊時隱藏登錄div。我正在努力與所需的jQuery。以下是我迄今爲止:通過點擊另一個格來淡入/掉出div
<html>
<div class="member"></div>
<div class="login">
<div class="login-close"></div>
</div>
</html>
.member {
width: 80px;
height: 67px;
float: right;
background-color: #4CA502;
background-image: url(../images/social-icon/dark/member.png);
background-repeat: no-repeat;
background-position: center center;
}
.login {
width: 300px;
height: 400px;
background: #090;
margin: 0px;
padding: 0px;
display: none;
position: absolute;
right: 0;
top: 87px;
}
.login-close {
background: #093;
position: absolute;
width: 30px;
height: 30px;
top: -30px;
margin: 0;
padding: 0;
}
$(document).ready(function() {
$(".member").click(function() {
$(this).next(".login").fadeIn(1000);
});
$(".login-close").click(function() {
$(this).next(".login").fadeOut(1000);
});
});
簡直就是,不知道make.Thank你!! – snopin