我父亲一直想要一个带有研讨会图表的网站,该图表由连接它们的圆圈和线条组成,作为他网站上文章的主要导航。该网站将有一个页眉和页脚,以及像图表一样的研讨会(有点像流程图,但只有圆圈)。我不是程序员,我想为我父亲做这件事。做了一些研究,发现了两种选择。使用图像作为圆圈或使用 CSS3。谁能指出我正确的方向。这是我的手工尝试。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Circles</title>
<link rel="stylesheet" href="circle.css">
</head>
<body>
<div id="wrapper">
<div id="header"><h1>Header</h1></div>
<div id="content">
<div class="c1"><a href="http://www.google.com" class="with-style">Hello</a></div>
<div class="c1"><a href="http://www.google.com" class="with-style">Hello</a></div>
</div>
<div id="footer">My Footer</div>
</div>
</body>
我的 CSS:
#wrapper {
background-color: black;
position: relative;
width: 600px;
height: 600px;
margin: 0 auto;
}
#header {
height: 8.3%;
width: 100%;
background-color: gray;
text-align: center;
}
#content {
color: green;
}
a.with-style {
display: block;
width:100px;
height:100px;
border-radius:50px;
font-size:20px;
line-height:100px;
text-align:center;
text-decoration: none;
text-shadow: 0 1px 0 #f15;
color: white;
background: blue;
}
a.with-style:hover {
border: 4px double #bbb;
color: #aaa;
text-decoration: none;
background: #e6e6e6;
}
div.c1 { display: inline; }
#footer {
background-color: grey;
text-align: center;
position: absolute;
bottom: 0px;
height: 8.3%;
width: 100%;
}