导航栏中的导航栏和滑块2

时间:2017-08-30 16:07:59

标签: javascript html angular ionic-framework ionic2

我想让我的标题内容成为幻灯片,当我向下滚动galery时隐藏,我的导航栏现在就像gif一样。 我需要一些东西来启动这个想法,我感谢你的帮助。感谢。

enter image description here

2 个答案:

答案 0 :(得分:2)

I hope this will help you.

<header>
  <div class="header-banner">
</div>

<nav>
<ul>
  <li><a href="#">$4,456-5,778 your text</a></li>
</ul>
</nav>
</header>
<section class="content">
  <p>Here add huge dummy content to check scroll position.</p>
</section>



 header {
 height:360px;
 }
.header-banner {
 background-color: red;
 width: 100%;
 height: 300px;
 }
 .fixed-header {
  position: fixed;
  top:0; left:0;
  width: 100%; 
  }
   nav {
  width:100%;
  height:60px;
  background: #292f36;
  postion:fixed;
  z-index:10;
  }
  nav ul { 
  list-style-type: none;
  margin: 0 auto;
  padding-left:0;
  text-align:right;
  width: 960px; 
  max-width: 100%;
  }
  nav ul li { 
  display: inline-block; 
  line-height: 60px;
  margin-left: 10px;
  }
  nav ul li a {
  text-decoration: none; 
  color: #a9abae;
  }


  $(window).scroll(function(){
if ($(window).scrollTop() >= 300) {
   $('nav').addClass('fixed-header');
}
else {
   $('nav').removeClass('fixed-header');
}
});

答案 1 :(得分:1)

Josh Morony的tutorial应该让你开始吧!玩得开心!