所以这就是我想做的事情, 添加登录/注册(退出时)当我的网站是移动版本(xs)时,在切换导航菜单中添加配置文件/注销(登录时)。 当我的网站处于桌面版(sm,md,lg,xl)时,我不想要任何东西
我现在有这样的代码
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<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="{% url 'index' %}">MyWeb</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">
</ul>
我需要添加
{% if user.is_authenticated %}
<a href="{% url 'userena_profile_detail' user.username %}" style="color:white">profile<i class="fa fa-user"></i></a></li>
<li><a href="/accounts/signout" style="position:relative; right:15px; color:white">else</a>
{% else %}
<li><a href="/accounts/signup/"style="color:white">signin<i class="fa fa-registered"></i></a></li>
<li><a href="/accounts/signin/" style="position:relative; right:15px; color:white">login<i class="fa fa-sign-in"></i></a></li>
{% endif %}
我该怎么做? 在桌面版本中我不需要任何东西,我只想简单地将它们放在xs中,然后我切换导航菜单
答案 0 :(得分:1)
试试这个:
<nav class="navbar navbar-default visible-xs-block">
此外,供您参考,您可以在Bootstrap viewport breakpoints
找到其他选项希望有所帮助:)