响应徽标以导航为中心



嗨,我有一个水平菜单,中央的徽标似乎无法直列,但到目前为止所有浏览器中看起来仍然不错。

现在,在响应模式下,我希望它一直在顶部显示徽标,并在下面显示以显示/隐藏菜单的按钮。在响应迅速的时刻,它隐藏了徽标,然后在单击"显示"菜单时,它显示了UL中间的徽标的菜单。

这是到目前为止的代码。

* {
    margin: 0;
    border: 0;
    padding: 0;
}
body {
    font-family: sans-serif;
    margin: 5px;
    background: #F1F6F8;
}
a {
    font-weight: bold;
    color: #3F5767;
    text-decoration: none;
}
a:hover {
    color: #524C56;
}
#wrapper {
    max-width: 980px;
    margin: 0 auto;
}
header {
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
}
/* Logo code can go here */
ul li a.logo {
    background: url(https://i.stack.imgur.com/1dcqW.png) no-repeat center;
    height:76px;
    width:175px;
    display:block;
    padding:5px;
    margin: 0 auto;
}
nav {
    text-align: center;
}
li {
    font-family: sans-serif;
    font-size: 150%;
    display: inline-block;
    padding: 0  10px 0 10px;
}
nav ul li a {
    color: #3F5767;
}
/* Start controls checkbox change button */
ul li a:hover + .hidden, .hidden:hover{  /* Maybe remove this */
        display: block;
        width: auto;
}       
input[type=checkbox] {
        display: none;
}
input[type=checkbox]:checked ~ #menu{
        display: block;
}
.show-menu{
        font-family: sans-serif;
        font-weight: bold;
        text-decoration: none;
        color: #3F5767;
        background: #424242;
        text-align: center;
        padding: 3px o;
        display: none;
}
.thing:before {
        content: "Show Menu";
}
input[type=checkbox]:checked ~ .thing:before {
        content: "Close Menu";
}
@media screen and (max-width: 760px) {
        ul{position: static;
        display: none;
}
li{
        margin: 0 auto;
        font-size: 100%;
        padding: 0;
        /*border-bottom: 2px solid #676767;*/
}
ul li, li a{
        width: 100%;
        font-size: 15px;
}
.show-menu{
        display: block;
        width: auto;
        height: 30px;
        padding: 3px 0 0 0;
}
}
/* End controls checkbox change button */
@media print {#ghostery-purple-box {display:none !important}}
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <meta charset="UTF-8">
        <title>Coast Fm Tasmania</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
    <header>
        <nav>
        <input id="show-menu" role="button" type="checkbox">
        <label for="show-menu" class="show-menu thing"> &nbsp </label>
        <ul id="menu">
            <li> 
            <a href="index.html" class="current">Home</a></li>
                <li><a href="#">Events</a></li>
                <li><a href="#">On-Air</a></li>
                <li><a href="#">Gallery</a></li>
                <li><a class="logo" href="index.html"></a></li> 
                <li><a href="#">Sport</a></li>
                <li><a href="#">The Team</a></li>
                <li><a href="#">Sponsors</a></li>
        </ul>
        </nav>
    </header>
</div>
</body>
</html>

也是徽标海岸FM

谢谢

您可以在div中添加另一个徽标,该徽标将是您的"隐藏徽标"。

<input id="show-menu" role="button" type="checkbox">
<div class="hidden">
 <a class="hidden-logo" href="index.html"></a>
 <label for="show-menu" class="show-menu thing"> &nbsp </label>
</div>

然后,您可以随时显示并将其隐藏。

.hidden {
    display:flex;
    justify-content: center;
    background: #424242;
    display:none;
}
@media screen and (max-width: 760px) {
    .hidden {
        display:flex;
    }
}
.hidden-logo {
    background: url(https://i.stack.imgur.com/1dcqW.png) no-repeat center;
    height:23px;
    background-size:50%;
    width:175px;
    display:block;
    padding:5px;
}

这是一个示例

https://jsfiddle.net/jrdkp7ph/2/

您可以使用jQuery并动态添加所需的列表

在这里检查代码:例如:https://jsbin.com/zusunidupo/1/edit?css,,, js,output需要在窗口大小时每次执行以下代码块(仅在第一次加载时执行链接)

if ($(window).width() < 760) {
$('<li><a class="logo" href="https://i.stack.imgur.com/1dcqW.png"><img border="0" src="https://i.stack.imgur.com/1dcqW.png" width="50" height="50"></a></li>').insertAfter($('li:eq(4)'))
}
else {
$("#menu").prepend('<li><a class="logo" href="https://i.stack.imgur.com/1dcqW.png"><img border="0" src="https://i.stack.imgur.com/1dcqW.png" width="50" height="50"></a></li>');
}

嘿,我认为您的HTML代码许多更改只是建议改进

* {
    margin: 0;
    border: 0;
    padding: 0;
}
body {
    font-family: sans-serif;
    margin: 5px;
    background: #F1F6F8;
}
a {
    font-weight: bold;
    color: #3F5767;
    text-decoration: none;
}
a:hover {
    color: #524C56;
}
#wrapper {
    max-width: 980px;
    margin: 0 auto;
}
header {
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
}
/* Logo code can go here */
ul li a.logo {
    background: url(https://i.stack.imgur.com/1dcqW.png) no-repeat center;
    height:76px;
    width:175px;
    display:block;
    padding:5px;
    margin: 0 auto;
}
.logo {
    background: url(https://i.stack.imgur.com/1dcqW.png) no-repeat center;
    height:76px;
    width:175px;
    display:block;
    padding:5px;
    margin: 0 auto;
}
nav {
    text-align: center;
}
li {
    font-family: sans-serif;
    font-size: 150%;
    display: inline-block;
    padding: 0  10px 0 10px;
}
nav ul li a {
    color: #3F5767;
}
/* Start controls checkbox change button */
ul li a:hover + .hidden, .hidden:hover{  /* Maybe remove this */
        display: block;
        width: auto;
}       
input[type=checkbox] {
        display: none;
}
input[type=checkbox]:checked ~ #menu{
        display: block;
}
.show-menu{
        font-family: sans-serif;
        font-weight: bold;
        text-decoration: none;
        color: #3F5767;
        background: #424242;
        text-align: center;
        padding: 3px o;
        display: none;
}
.thing:before {
        content: "Show Menu";
}
input[type=checkbox]:checked ~ .thing:before {
        content: "Close Menu";
}
@media screen and (max-width: 760px) {
ul{position: static;
        display: none;
}
ul li a.logo { display: none; } 
li{
        margin: 0 auto;
        font-size: 100%;
        padding: 0;
        /*border-bottom: 2px solid #676767;*/
}
ul li, li a{
        width: 100%;
        font-size: 15px;
}
.show-menu{
        display: block;
        width: auto;
        height: 30px;
        padding: 3px 0 0 0;
}
}
/* End controls checkbox change button */
@media print {#ghostery-purple-box {display:none !important}}
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <meta charset="UTF-8">
        <title>Coast Fm Tasmania</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
    <header>
        <nav>
        <input id="show-menu" role="button" type="checkbox">
        <label for="show-menu" class="show-menu thing">  <a class="logo" href="index.html"></a>  &nbsp </label>
       
        <ul id="menu">
            <li> 
            <a href="index.html" class="current">Home</a></li>
                <li><a href="#">Events</a></li>
                <li><a href="#">On-Air</a></li>
                <li><a href="#">Gallery</a></li>
                <li><a class="logo" href="index.html"></a></li> 
                <li><a href="#">Sport</a></li>
                <li><a href="#">The Team</a></li>
                <li><a href="#">Sponsors</a></li>
        </ul>
        </nav>
    </header>
</div>
</body>
</html>

最新更新