web-dev-qa-db-ja.com

クラストグルをウィンドウスクロールイベントにバインド

ユーザーがブラウザウィンドウを特定のポイントより下にスクロールすると、#page divのクラスが切り替わります。

私がこれまでにしたことはうまくいきます:

http://jsfiddle.net/eTTZj/29/

<div ng-app="myApp" scroll id="page">

    <header></header>
    <section></section>

</div>

app = angular.module('myApp', []);
app.directive("scroll", function ($window) {
    return function(scope, element, attrs) {
        angular.element($window).bind("scroll", function() {
             if (this.pageYOffset >= 100) {
                 element.addClass('min');
                 console.log('Scrolled below header.');
             } else {
                 element.removeClass('min');
                 console.log('Header is in view.');
             }
        });
    };
});

(ヘッダー、100pxの下でウィンドウをスクロールすると、クラスが切り替わります)

私が間違っている場合は修正してくださいが、これはAngularでこれを行う正しい方法ではないと感じています。

代わりに、これを行う最良の方法は、ng-classを使用してスコープにブール値を格納することだと推測しました。このようなもの:

<div ng-app="myApp" scroll id="page" ng-class="{min: boolChangeClass}">

    <header></header>
    <section></section>

</div>

app = angular.module('myApp', []);
app.directive("scroll", function ($window) {
    return function(scope, element, attrs) {
        angular.element($window).bind("scroll", function() {
             if (this.pageYOffset >= 100) {
                 scope.boolChangeClass = true;
                 console.log('Scrolled below header.');
             } else {
                 scope.boolChangeClass = false;
                 console.log('Header is in view.');
             }
        });
    };
});

これは動的ではありませんが、スクロールコールバックでscope.boolChangeClassの値を変更した場合、ng-classは更新されません。

だから私の質問は、ユーザーが特定のポイントより下にスクロールしたときに、AngularJSを使用して#pageのクラスを切り替えるのが最善の方法ですか?

59
StuR

なぜあなたは重いスコープ操作を提案するのですか?なぜこれが「角度のある」ソリューションではないのかわかりません。

.directive('changeClassOnScroll', function ($window) {
  return {
    restrict: 'A',
    scope: {
        offset: "@",
        scrollClass: "@"
    },
    link: function(scope, element) {
        angular.element($window).bind("scroll", function() {
            if (this.pageYOffset >= parseInt(scope.offset)) {
                element.addClass(scope.scrollClass);
            } else {
                element.removeClass(scope.scrollClass);
            }
        });
    }
  };
})

したがって、次のように使用できます。

<navbar change-class-on-scroll offset="500" scroll-class="you-have-scrolled-down"></navbar>

または

<div change-class-on-scroll offset="500" scroll-class="you-have-scrolled-down"></div>
23
user1415066

コメントで私の質問に答えてくれたFlekに感謝します。

http://jsfiddle.net/eTTZj/30/

<div ng-app="myApp" scroll id="page" ng-class="{min:boolChangeClass}">

    <header></header>
    <section></section>

</div>

app = angular.module('myApp', []);
app.directive("scroll", function ($window) {
    return function(scope, element, attrs) {
        angular.element($window).bind("scroll", function() {
             if (this.pageYOffset >= 100) {
                 scope.boolChangeClass = true;
             } else {
                 scope.boolChangeClass = false;
             }
            scope.$apply();
        });
    };
});
86
StuR

これは私の解決策であり、それほどトリッキーではなく、単純なng-classディレクティブを通していくつかのマークアップに使用できるようにします。同様に、ケースごとにクラスとscrollPosを選択できます。

あなたのApp.js:

angular.module('myApp',[])
    .controller('mainCtrl',function($window, $scope){
        $scope.scrollPos = 0;

        $window.onscroll = function(){
            $scope.scrollPos = document.body.scrollTop || document.documentElement.scrollTop || 0;
            $scope.$apply(); //or simply $scope.$digest();
        };
    });

あなたのindex.html:

<html ng-app="myApp">
    <head></head>
    <body>
        <section ng-controller="mainCtrl">
            <p class="red" ng-class="{fix:scrollPos >= 100}">fix me when scroll is equals to 100</p>
            <p class="blue" ng-class="{fix:scrollPos >= 150}">fix me when scroll is equals to 150</p>
        </section>
    </body>
</html>

動作中 JSFiddle here

編集:

$apply()は実際に$rootScope.$digest()を呼び出しているため、$scope.$digest()の代わりに$scope.$apply()を直接使用して、コンテキストに応じてパフォーマンスを向上させることができます。
長い話:$apply()は常に機能しますが、パフォーマンスの問題を引き起こす可能性のあるすべてのスコープで$digestを強制します。

16
Freezystem

たぶんこれが助けになるでしょう:)

コントローラ

$scope.scrollevent = function($e){
   // Your code
}

HTML

<div scroll scroll-event="scrollevent">//scrollable content</div>

または

<body scroll scroll-event="scrollevent">//scrollable content</body>

指令

.directive("scroll", function ($window) {
   return {
      scope: {
         scrollEvent: '&'
      },
      link : function(scope, element, attrs) {
        $("#"+attrs.id).scroll(function($e) { scope.scrollEvent != null ?  scope.scrollEvent()($e) : null })
      }
   }
})
2
Kelk

パフォーマンスはどうですか?

  1. 常にイベントをデバウンスして計算を減らします
  2. scope.applyAsyncを使用して、ダイジェストサイクルの総数を減らします
function debounce(func, wait) {
    var timeout;
    return function () {
        var context = this, args = arguments;
        var later = function () {
            timeout = null;
            func.apply(context, args);
        };

        if (!timeout) func.apply(context, args);
        clearTimeout(timeout);
        timeout = setTimeout(later, wait);
    };
}

angular.module('app.layout')
  .directive('classScroll', function ($window) {    
    return {
        restrict: 'A',
        link: function (scope, element) {    
            function toggle() {
                angular.element(element)
                  .toggleClass('class-scroll--scrolled', 
                    window.pageYOffset > 0);
                scope.$applyAsync();
            }    
            angular.element($window)
              .on('scroll', debounce(toggle, 50));

            toggle();
        }
    };
});

3.ウォッチャー/ダイジェストをまったくトリガーする必要がない場合は、compileを使用します

.directive('classScroll', function ($window, utils) {
    return {
        restrict: 'A',
        compile: function (element, attributes) {
            function toggle() {
                angular.element(element)
                  .toggleClass(attributes.classScroll,
                    window.pageYOffset > 0);
            }

            angular.element($window)
              .on('scroll', utils.debounce(toggle, 50));
            toggle();
        }
    };
  });

<header class-scroll="header--scrolled">のように使用できます

0
grigson