我希望在用户滚动角度方式时更改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);
});
});
Muchos gracias amigos!
答案 0 :(得分:65)
请记住,在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();
}
};
});
我不清楚你到底要找到什么样的最终结果,所以这是一个简单的演示应用程序,如果窗口向下滚动超过50像素,则将元素的高度设置为1px
:{{ 3}}