- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚接触 Rails,刚刚完成了一个月的 Rails 类(class)。当我在当前链接上时,我用谷歌搜索了如何使我的导航链接具有不同的颜色,例如当我在主页中时,导航主页链接应该具有背景颜色等。但是我发现了这个 active_link_to ,我还不知道如何阅读文档。我应该如何使用它?
这是 active_link_to 文档的链接:https://github.com/comfy/active_link_to
这是我认为应该放置 active_link_to 的代码:
<nav class="navbar navbar-static-top navbar-default" role="navigation">
<div class="container">
<!-- 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>
<%= link_to "Pinteresting", root_path, class: "navbar-brand" %>
</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 navbar-right">
<li>
<%= link_to root_path do %>
<span class="glyphicon glyphicon-home"></span> Home
<% end %>
</li>
<li>
<%= link_to about_path do %>
<span class="glyphicon glyphicon-user"></span> About
<% end %>
</li>
<% if user_signed_in? %>
<li>
<%= link_to new_pin_path do %>
<button type="button" class="btn btn-primary btn-xs">
<span class="glyphicon glyphicon-pushpin"></span> New Pin
</button>
<% end %>
</li>
<li>
<%= link_to edit_user_registration_path do %>
<span class="glyphicon glyphicon-cog"></span> Account Settings
<% end %>
</li>
<li>
<%= link_to destroy_user_session_path, method: :delete do %>
<span class="glyphicon glyphicon-off"></span> Log out
<% end %>
</li>
<% else %>
<li>
<%= link_to new_user_session_path do %>
<span class="glyphicon glyphicon-check"></span> Sign in
<% end %>
</li>
<% end %>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container -->
</nav>
最佳答案
这是一个简单的例子,展示了如何添加 active_link_to
到一个项目:
将其添加到您的 Gemfile 中:
gem "active_link_to"
bundle install
link_to
helper
active_link_to
- 您不必修改任何其他内容,因为 active_link_to 充当了 link_to 的包装器。
.active
添加样式。添加到任何事件链接的类。
a.active {
background-color: #6699ff;
/* other styling here, as desired */
}
关于ruby-on-rails - 如何使用active_link_to?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33728593/
我正在尝试获取 active_link_to在我使用 pagination 时正常工作.我有 3 nav-tabs并且它们在选择时都可以正常工作,但是,当我单击我的分页按钮以查看更多记录时,我当前的导
我目前正在使用 active_link_to 来跟踪导航栏链接状态的变化。当我为事件状态添加样式时,它看起来像下图。我想将事件状态边框推到链接的顶部。 Twitter 的导航栏是我一直尝试实现的样式的
我在使用 active_link_to 显示第 n 个 css 按钮/列表元素时遇到了问题。第一个 css 按钮显示没有问题并且处于事件状态。当我向列表添加新按钮时,它们会消失。 HTML
我的主页按钮的 active_link_to 事件状态有问题。但是,我确信一种解决方案将帮助我修复所有 future 的 img css 按钮以使其正常工作。按钮的链接为 current_user 显
我是一名优秀的程序员,十分优秀!