我不确定如何解释这个问题,但我有......
<section id="contact-page">
<div class="contact-wrapper">
<h1>Contact Us</h1>
<dl class="contact">
<dt>Contact</dt>
<dd>Email: <a href="mailto:myemail@gmail.com">myemail@gmail.com</a></dd>
<dd>Phone: (812 000 0000)</dd>
</dl>
<dl class="address">
<dt>Address</dt>
<dd>I forgot to take out my addrss</dd>
<dd>CHere too...</dd>
<dd>United States</dd>
</dl>
<dl class="business-hours">
<dt>Business Hours</dt>
<dd>Monday — Friday</dd>
<dd>10am to 6pm</dd>
</dl>
</div>
非常相关的Javascript
<script>
$(document).ready(function(e){
$('#contactclick').on('click',function(){
$('#contact-page').slideToggle();
});
})
</script>
发生下滑,但一旦击中底部,它就会向上滑动,所以只显示标题为“联系我们”的h1标题。这可能是利润率的问题吗? js的新手,所以这让我很烦。
相关CSS
.contact-page {
overflow: hidden;
}
#contact-page {
clear: both;
color: #FFF;
display: none;
font-family: 'Fenix', serif;
font-size: 1.8rem;
letter-spacing: .12rem;
padding-bottom: 1.5rem;
padding-top: 6rem;
text-align: center;
width: 100%;
}
#contact-page dl {
float: left;
margin-top: 2rem;
text-align: center;
width: 20%;
}
#contact-page dl dd {
line-height: 1.7rem;
margin: 0;
}
#contact-wrapper {
background: rgba(0 0 0 .1);
display: ;
margin: 0 auto;
position: relative;
width: 100%;
}
dl {
float: left;
margin-top: 2rem;
text-align: center;
width: 20%;
}
dd {
margin: 0 0 0 40px;
}
现在有前后图像! http://imgur.com/2VfXaLw,aryV2VD#0
答案 0 :(得分:0)
修正了它!我把我的dt和dd设置为浮动:离开所以当切换进行时,标题试图取代其内容并覆盖它?