我正在尝试进行我的投资组合,并在屏幕顶部设置一个导航栏,其中包含一些链接(例如,Home,Work,About等)
我是否需要为每个链接制作另一个html文件,以便浏览器转到正确的页面?或者这可以在一个HTML
文档中完成吗?
当我尝试在一个html文档中编写它时,我得到的只是一个非常长的网站,而这不是我的目标。
我怎样才能做到这一点?
答案 0 :(得分:0)
实际上,您提到的两种工作方式,但它们取决于您网站的目标。
如果您的网站是针对文章或类似的内容,我认为这是更好的方式。
function openPage(pageName,elmnt,color) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablink");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].style.backgroundColor = "";
}
document.getElementById(pageName).style.display = "block";
elmnt.style.backgroundColor = color;
}
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click();
&#13;
* {box-sizing: border-box}
/* Set height of body and the document to 100% */
body, html {
height: 100%;
margin: 0;
font-family: Arial;
}
/* Style tab links */
.tablink {
background-color: #555;
color: white;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
font-size: 17px;
width: 25%;
}
.tablink:hover {
background-color: #777;
}
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
color: white;
display: none;
padding: 100px 20px;
height: 100%;
}
#Home {background-color: green;}
#News {background-color: red;}
#Contact {background-color: blue;}
#About {background-color: orange;}
&#13;
<button class="tablink" onclick="openPage('Home', this, 'green')">Home</button>
<button class="tablink" onclick="openPage('News', this, 'red')" id="defaultOpen">News</button>
<button class="tablink" onclick="openPage('Contact', this, 'blue')">Contact</button>
<button class="tablink" onclick="openPage('About', this, 'orange')">About</button>
<div id="Home" class="tabcontent">
<h3>Home</h3>
<p>Home is where the heart is..</p>
</div>
<div id="News" class="tabcontent">
<h3>News</h3>
<p>Some news this fine day!</p>
</div>
<div id="Contact" class="tabcontent">
<h3>Contact</h3>
<p>Get in touch, or swing by for a cup of coffee.</p>
</div>
<div id="About" class="tabcontent">
<h3>About</h3>
<p>Who we are and what we do.</p>
</div>
&#13;
原始代码 w3schools
答案 1 :(得分:0)
根据我的经验,每个页面都有一个单独的HTML文档是最简单,最干净的方法。大多数网站也为每个页面都有单独的html文件。
您的导航栏可能看起来像这样
<ul>
<li><a href="default.asp">Home</a></li>
<li><a href="news.asp">News</a></li>
<li><a href="contact.asp">Contact</a></li>
<li><a href="about.asp">About</a></li>
</ul>
这取自W3Schools,https://www.w3schools.com/Css/css_navbar.asp。我建议查看他们的教程以获取更多信息。