29

我想在用户滚动角度方式时更改 CSS 元素。

这是以 JQuery 方式工作的代码

$(window).scroll(function() {
    if ($(window).scrollTop() > 20 && $(window).scrollTop() < 600) {
        $('header, h1, a, div, span, ul, li, nav').css('height','-=10px');
    } else if ($(window).scrollTop() < 80) {
        $('header, h1, a, div, span, ul, li, nav').css('height','100px');
    }

我尝试使用以下代码执行 Angular 方式,但 $scope.scroll 似乎无法正确拾取滚动数据。

forestboneApp.controller('MainCtrl', function($scope, $document) {
    $scope.scroll = $($document).scroll();
    $scope.$watch('scroll', function (newValue) {
        console.log(newValue);
    });
});
4

1 回答 1

66

请记住,在 Angular 中,DOM 访问应该在指令中进行。scrollTop这是一个简单的指令,它根据窗口的设置一个变量。

app.directive('scrollPosition', function($window) {
  return {
    scope: {
      scroll: '=scrollPosition'
    },
    link: function(scope, element, attrs) {
      var windowEl = angular.element($window);
      var handler = function() {
        scope.scroll = windowEl.scrollTop();
      }
      windowEl.on('scroll', scope.$apply.bind(scope, handler));
      handler();
    }
  };
});

对我来说,您正在寻找的最终结果并不明显,所以这是一个简单的演示应用程序,1px如果窗口向下滚动超过 50 像素,则将元素的高度设置为:http: //jsfiddle.net/BinaryMuse/ Z4VqP/

于 2012-11-25T08:38:46.287 回答