我正在尝试构建一个本质上是一页的网页,但有四个“隐藏”的 div,当您单击底部的菜单按钮时,它们会淡入和淡出可见性。
我想在每个 div 的顶部放置一个“关闭”按钮,这样您就可以“关闭”那个 div - 但是如果在单击新菜单项时 div 仍然自行淡出,那就太好了。到目前为止,我已经使用 css 和 html 创建了 div 框和链接,但对于 javascript,我绝对是新手。这是我到目前为止的代码
HTML:
<div class="menu">
<a class="portfolio" href="http://www.google.com"> Portfolio </a> | <a class="aboutme" href="http://www.google.com"> About Me </a> | <a class="education" href="http://www.google.com"> Education</a> | <a class="contact" href="http://www.google.com"> Contact</a>
</div>
<div>`
(注意:我只把谷歌作为链接目标,因为我不知道还能放什么)。
CSS:
.aboutmewindow
{
width:583px;
height:557px;
border-bottom-style:dashed;
position:absolute;
top:0px;
z-index:2;
}
.portfoliowindow
{
width:583px;
height:557px;
border-bottom-style:dashed;
position:absolute;
top:0px;
z-index:2;
}
.educationwindow
{
width:583px;
height:557px;
border-bottom-style:dashed;
position:absolute;
top:0px;
z-index:2;
}
.contactwindow
{
width:583px;
height:557px;
border-bottom-style:dashed;
position:absolute;
top:0px;
z-index:2;
}`
我已经尝试过自己编写一些 javascript,但此时它严重超出了我的深度。不过,我将继续学习教程,所以希望我能掌握它。
有人有什么建议吗?还是好的教程?
谢谢!