Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/40.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
标题菜单未出现在我的汉堡html页面中_Html_Css_Hamburger Menu - Fatal编程技术网

标题菜单未出现在我的汉堡html页面中

标题菜单未出现在我的汉堡html页面中,html,css,hamburger-menu,Html,Css,Hamburger Menu,你好 我设计了一个汉堡html页面。我的标题“domoos mobile”仅在汉堡“展开”时显示(我不确定是否使用了正确的单词)。见下图: 我不太清楚我在这里遗漏了什么,为什么我的标题不能正确显示 我希望我的问题是可以理解的,并将有助于其他程序员以及。这是我的第一款手机设计,所以我也希望你能原谅我;) 谢谢你的帮助 html页面的内容: 好吧,亲爱的,我知道你开始错了…为什么你不从引导开始呢?这里有一些很好的模板。您可以将其用于下拉菜单、搜索框输入等。您可以使用此链接查看一些模板: 在此处

你好

我设计了一个汉堡html页面。我的标题“domoos mobile”仅在汉堡“展开”时显示(我不确定是否使用了正确的单词)。见下图:

我不太清楚我在这里遗漏了什么,为什么我的标题不能正确显示

我希望我的问题是可以理解的,并将有助于其他程序员以及。这是我的第一款手机设计,所以我也希望你能原谅我;)

谢谢你的帮助

html页面的内容:


好吧,亲爱的,我知道你开始错了…为什么你不从引导开始呢?这里有一些很好的模板。您可以将其用于下拉菜单、搜索框输入等。您可以使用此链接查看一些模板:

在此处输入代码
我还向您添加了我在引导站点使用的代码:
切换导航
提交

这是您的完整代码吗?它看起来不像你的截图。我不知道codepen.io是如何工作的,但我们还需要加载javascript jquery-2.1.3.min.js、jquery-ui.min.js和hamburger.js。也许我错了。谢谢你的帮助。
<!DOCTYPE html> 
<html> 
<head> 
    <title>Domoos mobile </title>
    <meta http-equiv="refresh" content="600">
    <meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no"/>
    <!--Using jQuery and jQuery UI for display effects--> 
    <script src="js/jquery-2.1.3.min.js"></script> 
    <script src="jquery-1.12.0/jquery-ui.min.js"></script> 
    <!--Using the hamburger menu display code--> 
    <script src="scripts/hamburger.js"></script> 
    <!--Using Media Queries, if the viewport is smaller than 700px use another stylesheet--> 
    <link rel="stylesheet" type="text/css" media="all" href="css/hamburger.css"/>
    <link rel="stylesheet" type="text/css" href="css/mystyle_hamburger.css" />
</head> 
<body>
    <!--This wrapping container is used to get the width of the whole content--> 
    <div id="container">
    <!--The Hamburger Button in the Header--> 
    <header>
        <div id="hamburger"> 
        <div></div> 
        <div></div> 
        <div></div> 
    </div> 
    </header>
    <!--The mobile navigation Markup hidden via css--> 
    <nav> 
        <ul>
            <!--<li><a href="#"><img src="assets/icons/sun_icon.png" alt="" width="14" height="14">menuitem 1</a></li> -->
            <li><a href="#">menuitem 1</a></li> 
            <li><a href="#">menuitem 2</a></li> 
            <li><a href="#">menuitem 3</a></li> 
            <li><a href="#">menuitem 4</a></li> 
            <li><a href="#">menuitem 5</a></li> 
            <li><a href="#">menuitem 6</a></li> 
        </ul>
    </nav>
    <!--The Layer that will be layed over the content 
    so that the content is unclickable while menu is shown--> 
    <a name="top"></a>
    <div id="contentLayer"></div> 
    <!--The content of the site--> 
    <div id="content">      
        <div id="tag_domoos_title">
        <p>Domoos mobile</p>
        </div>
    </div>
    </div>
</body> 
</html> 
#tag_domoos_title{
    font-family:Arial;
    font-size: 110%;
    text-align: left;
    position: absolute;
    top: 35px;
    left: 101px;
    color:black;
    z-index:10;
    font-weight: 900;
}

#date{
    font-family:Arial;
    font-size: 90%;
    text-align: left;
    position: absolute;
    top: 85px;
    left: 101px;
    color:blue;
}
#time{
    font-family:Arial;
    font-size: 90%;
    text-align: left;
    position: absolute;
    top: 103px;
    left: 101px;
    color:blue;
}

#tag_sunrise_sunset{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 107px;
    left: 11px;
    color:black;
}

#tag_weather_condition{
    font-family:Arial;
    font-size: 90%;
    text-align: left;
    position: absolute;
    top: 130px;
    left: 11px;
    color:black;
}

#tag_weather_temperature{
    font-family:Arial;
    font-size: 90%;
    text-align: left;
    position: absolute;
    top: 148px;
    left: 11px;
    color:black;
    font-weight: 900;
}

#current_weather_conditions{
    font-family:Arial;
    font-size: 90%;
    text-align: left;
    position: absolute;
    top: 168px;
    left: 11px;
    color:black;
}

#meteo_icon {
  position: relative;
}

#meteo_icon img{
  position: absolute;
  right: 0;
  top: 80px;
}

#meteo_forecast{
    font-family:Arial;  
    font-size: 100%;
    float:left;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    height:434px;
    width:870px;
    top:200px;
    position: absolute;
}

#meteo_forecast_day1{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 260px;
    left: 11px;
    color:black;    
    font-weight: 600;
}

#meteo_forecast_day2{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 330px;
    left: 11px;
    color:black;    
    font-weight: 600;
}

#meteo_forecast_day3{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 400px;
    left: 11px;
    color:black;
    font-weight: 600;   
}

#meteo_forecast_temperature_day1{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 260px;
    left: 220px;
    color:black;
}

#meteo_forecast_temperature_day2{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 330px;
    left: 220px;
    color:black;
}

#meteo_forecast_temperature_day3{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 400px;
    left: 220px;
    color:black;
}

#meteo_forecast_condition_day1{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 280px;
    left: 11px;
    color:black;
}

#meteo_forecast_condition_day2{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 350px;
    left: 11px;
    color:black;
}

#meteo_forecast_condition_day3{
    font-family:Arial;
    font-size: 80%;
    text-align: left;
    position: absolute;
    top: 420px;
    left: 11px;
    color:black;
}


#domoos_logo{
position: relative; 
}

#domoos_logo img{
  position: absolute;
  left: 0;
  top: 10px;
}

#lorem{
    font-family:Arial;
    font-size: 100%;
    text-align: left;
    position: relative;
    top: 700px;
    left: 10px;
    color:black;
}
    enter code here

I also added you something I used from bootstrap site with this code:
<nav class="navbar navbar-default">
  <div class="container-fluid">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
      <a class="navbar-brand" href="#">Brand</a>
    </div>

    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      <ul class="nav navbar-nav">
        <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">Separated link</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">One more separated link</a></li>
          </ul>
        </li>
      </ul>
      <form class="navbar-form navbar-left">
        <div class="form-group">
          <input type="text" class="form-control" placeholder="Search">
        </div>
        <button type="submit" class="btn btn-default">Submit</button>
      </form>
      <ul class="nav navbar-nav navbar-right">
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">Separated link</a></li>
          </ul>
        </li>
      </ul>
    </div><!-- /.navbar-collapse -->
  </div><!-- /.container-fluid -->
</nav>