0

scrollspyBootstrap ライブラリから実装しようとしています。現在、手動でアクティブにしたタブはアクティブのままで、navスクロールまたはクリックしても変更はありません。私は次のものを持っています。何か案は?

.row
  %ul{ :id => "navthingy", :class => "nav nav-tabs nav-stacked fixed span3" }
    %li.active
      %a.icon-user{ :href => '#profile'}
        Profile
    %li
      %a.icon-lightbulb{ :href => '#ideas'}
        Ideas
    %li
      %a.icon-arrow-right{ :href => '#followings'}
        Followings
    %li
      %a.icon-group{ :href => '#teams'}
        Teams
  .span3
  .span9{ :data => { :spy => "scroll", :target => "#navthingy" } }
    .header-banner
      %a.anchor{ :id => 'profile'}
      %h2
        = @user.name
        %small
          = pluralize(@user.ideas.count, "Idea")
          = pluralize(@user.followings.count, "Following")
          = @user.created_at.strftime("Joined %B %Y")
    .user-info
      %p
        %strong= @user.occupation
      %p= @user.info

    .header-banner.spaced
      %a.anchor{ :id => 'ideas'}
      %h2
        Ideas
        %small
          = "Suggested #{pluralize(@user.ideas.count, 'idea')}"    
    = render partial: 'ideas/ideas', locals: { ideas: @user.ideas }

    .header-banner.spaced
      %a.anchor{ :id => 'followings'}
      %h2
        Following
        %small
          = "Following #{pluralize(@user.following_ideas.count, 'idea')}"
    = render partial: 'ideas/ideas', locals: { ideas: @user.following_ideas }

    .header-banner.spaced
      %a.anchor{ :id => 'teams'}
      %h2
        Teams
        %small
          = "Member on #{pluralize(@user.accepted_teams.count, 'team')}"
    = render partial: 'ideas/ideas', locals: { ideas: @user.accepted_teams.map { |x| x.idea } }

:javascript
  $(document).ready(function() {
      equalHeight($(".thumbnail-top"));
  });
4

1 に答える 1

0

ここのようなものを達成したい場合。Appizyを使用できます。コンテンツをスプレッドシートに入力するだけで、ソフトウェアがスクロールスパイを含む素敵な 1 ページの Web を作成します。

こちらにもチュートリアルビデオがあります。

それがあなたを助けることを願っています! ニコラス

于 2014-06-02T19:30:55.273 に答える