javascript - HTML CSS/JS 底部导航栏向上滑动

标签 javascript html css navbar

我已经做了一些研究,但似乎无法准确找到我要找的东西。我的目标是在我的 JS 应用程序底部有一个导航栏,当用户单击某个按钮时,它会启动一个动画,导航栏从应用程序底部移动到应用程序顶部。以下是我为说明我的意思所做的一些编辑:

default position

after user presses "profile" button, for example

不确定哪个 JS 库可以帮助我解决这个问题,或者是否有代码示例。这里的关键是我不希望它在单击的任何按钮上移动,只有某些按钮。例如,如果用户点击我上面示例中的“图书馆”,我希望它留在底部。

可能有人知道我如何才能做到这一点吗?

编辑:所以我这样做的原因是因为这是一个电子应用程序,我希望一些内容是本地的,而一些内容是远程的。这就是为什么当用户按下“库”时我希望导航栏保持静止。但是,如果用户按下“配置文件”,它将移至顶部,并且“内容”窗口将有点像网络浏览器,因为它将在远程网络服务器上加载页面。我希望这有帮助。感谢您提供所有信息!

编辑 2:有点离题,但我得到了这个奇怪的填充,我不确定它来自哪里:

weird space

编辑 3:

这是 HTML 和 CSS:

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title></title>
 <script type="text/javascript" src="renderer.js"></script>
 <script 
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
 </script>
 <link rel="stylesheet" href="styles.css">
<body>
<script>
  function toggleNavLocation() {
    //alert('clciiikkkked');
    $('nav').toggleClass('top');
  }
</script>
<nav>
  <div id="logo_container"><img id="logo" 
 src="./assets/images/poscon_nav.jpg" width="100px" height="55px" /></div>
  <div id="navitems">
  <ul>
    <li id="dashboard">DASHBOARD</li>
    <li id="pilotclient">PILOT CLIENT</li>
    <li id="livemap">LIVE MAP</li>
    <li id="community">COMMUNITY</li>
    <li id="profile" onclick="toggleNavLocation()">PROFILE</li>
    <li id="training">TRAINING</li>
    <li id="support">SUPPORT</li>
    <li id="library">LIBRARY</li>
  </ul>
  </div>
</nav>

<div id="right_content">
  <div id="user_pane">
    <span id="username"></span>
  </div>
</div>

<div id="center_content">

</div>

<div id="left_content">

</div>

 </body>
</html>

CSS:

 body {
  font-family: "Arial", Serif;
  background-color: rgb(27, 27, 27);
  overflow-x: hidden;
  overflow-y: hidden;
 }

 nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width:850;
  height:75px;
  background: rgb(27, 27, 80);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
 }

 nav.top {
  bottom:calc(100% - 50px);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
 }

 #dashboard, #pilotclient, #livemap, #community, #profile, #training, 
 #support, #library, #search_img {
  font-size: 11px;
  color: rgb(81, 81, 81);
  padding-top: 22px;
  display: inline-block;
  width: 75px;
  height:75px;
  background:rgb(27, 27, 27);
  text-align:center;
 }

#dashboard:hover, #pilotclient:hover, #livemap:hover, #community:hover, 
#profile:hover, #training:hover, #support:hover, #library:hover {
  background: #252525;
}

#logo_container {
 display: inline-block;
 position: absolute;
 left: 10px;
 bottom: 2px;
}

#navitems {
 display: inline-block;
 margin-left: 150px;
 height: 100px;
}

#right_content {
 width: 250px;
 height: 575px;
 position: absolute;
 top: 0px;
 right: 0px;
 background-color: red;
}

#center_content {
 width: 500px;
 height: 575px;
 position:absolute;
 top: 0px;
 right: 250px;
 background-color: blue;
}

#left_content {
 width: 250px;
 height: 575px;
 position:absolute;
 top: 0px;
 left: 0px;
 background-color: green;
}

#user_pane {
 width: 250px;
 height: 250px;
 position: absolute;
 top: 0px;
 right: 0px;
 background-color: green;
}

#username {
 width: 200px;
 height: 25px;
 position: absolute;
 top: 175px;
 left: 20px;
 text-align: center;
 background-color: white;
}

最佳答案

您可以使用一些 JS 向您的导航栏添加一个类来制作动画,您可以在单击具有特定 ID 的按钮时添加此类。

下面是演示这一点的片段:

$('#profile').on('click', function(){
  toggleNavLocation();
});

function toggleNavLocation() {
$('nav').toggleClass('top');
}
nav {
  width:100vw;
  height:50px;
  background:#000;
  bottom: 0;
  color:#fff;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  position: absolute;
}

nav.top {
  bottom:calc(100% - 50px);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

li {
display:inline-block;
width:100px;
height:25px;
background:rgba(255,255,255,0.2);
text-align:center;
line-height:25px;
cursor:pointer;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<html>
<body>
<nav>
<ul>
<li id="profile">Profile</li>
<li id="library">Library</li>
</ul>
</nav>
</body>
</html>

如果你不想让它动起来,只是跳到顶部或底部,那么你可以删除所有这些行:

-webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;

这是一个演示这一点的片段:

$('#profile').on('click', function(){
  toggleNavLocation();
});

function toggleNavLocation() {
$('nav').toggleClass('top');
}
nav {
  width:100vw;
  height:50px;
  background:#000;
  bottom: 0;
  color:#fff;
  position: absolute;
}

nav.top {
  bottom:calc(100% - 50px);
}

li {
display:inline-block;
width:100px;
height:25px;
background:rgba(255,255,255,0.2);
text-align:center;
line-height:25px;
cursor:pointer;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<html>
<body>
<nav>
<ul>
<li id="profile">Profile</li>
<li id="library">Library</li>
</ul>
</nav>
</body>
</html>

这些示例使用了一些 JQuery,但如果您想要纯 JS,您应该能够将它移植到 Vanilla,并在我提供的代码中考虑一下。

关于javascript - HTML CSS/JS 底部导航栏向上滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55284741/

相关文章:

css - 使用尽可能多的 unicode 字符获取 Google 网络字体作为 ttf?

即使更改版本、硬刷新和清除缓存后,CSS 更改也不会反射(reflect)出来

html - 像最新的 Safari 一样使用空格将文本换行 : pre

javascript - Typeface.js 不在 Internet Explorer 中呈现字体

javascript - 为什么这个 readline 异步迭代器不能正常工作?

javascript - 如何禁用 HTML 代码中的脚本并仍然显示它们?

javascript - 通过标签名称获取元素的子元素长度

javascript - 在使用 jQuery 打开时,将更多选项添加到选择下拉列表中

javascript - 如何使用 Javascript 添加自动更改页脚信用?

javascript - 比较JS中的两个日期