37

我遇到了旧的可变高度导航问题:position: fixes顶部导航和margin-top: $naviHeight下面的内容。当异步加载数据时,导航可以改变高度,因此内容的边距必须随之改变。

我希望这是自给自足的。所以没有加载数据的代码,但只在涉及的 html-elements/directives 中。

目前我正在使用这样的计时器在 AngularJS 1.2.0 中执行此操作:

/*
* Get notified when height changes and change margin-top
 */
.directive( 'emHeightTarget', function(){
    return {
        link: function( scope, elem, attrs ){

            scope.$on( 'heightchange', function( ev, newHeight ){

                elem.attr( 'style', 'margin-top: ' + (58+newHeight) + 'px' );
            } );
        }
    }
})

/*
* Checks this element periodically for height changes
 */
.directive( 'emHeightSource', ['$timeout', function( $timeout ) {

    return {
        link: function( scope, elem, attrs ){

            function __check(){

                var h = elem.height();

                if( h != scope.__height ){

                    scope.__height = h;
                    scope.$emit( 'heightchange', h );
                }
                $timeout( __check, 1000 );
            }
            __check();
        }
    }

} ] )

这具有使用计时器的明显缺点(我觉得有点难看)和导航调整大小后的一定延迟,直到内容被移动。

有一个更好的方法吗?

4

7 回答 7

40

这通过注册一个emHeightSource称为 every的观察者来工作$digest。它更新了__height反过来被观察的属性emHeightTarget

/*
 * Get notified when height changes and change margin-top
 */
.directive( 'emHeightTarget', function() {
    return {
        link: function( scope, elem, attrs ) {

            scope.$watch( '__height', function( newHeight, oldHeight ) {
                elem.attr( 'style', 'margin-top: ' + (58 + newHeight) + 'px' );
            } );
        }
    }
} )

/*
 * Checks every $digest for height changes
 */
.directive( 'emHeightSource', function() {

    return {
        link: function( scope, elem, attrs ) {

            scope.$watch( function() {
                scope.__height = elem.height();
            } );
        }
    }

} )
于 2013-09-27T10:59:47.060 回答
24

你可以不使用 Div 来监控元素的高度变化,只需要写一个$watch语句:

// Observe the element's height.
scope.$watch
    (
        function () {
            return linkElement.height();
        },
        function (newValue, oldValue) {
            if (newValue != oldValue) {
                // Do something ...
                console.log(newValue);
            }
        }
    );
于 2014-08-27T11:15:24.563 回答
13

也许你应该注意$window'尺寸变化,比如:

.directive( 'emHeightSource', [ '$window', function(  $window ) {

    return {
        link: function( scope, elem, attrs ){

           var win = angular.element($window);
           win.bind("resize",function(e){

              console.log(" Window resized! ");
              // Your relevant code here...

           })
        }
    }    
} ] )
于 2013-09-27T11:07:59.980 回答
6

我使用了 $watch 和 resize 事件的组合。我发现没有范围。$apply(); 在 resize 事件中,元素的高度变化并不总是被 $watch 拾取。

   link:function (scope, elem) {
        var win = angular.element($window);
        scope.$watch(function () {
                return elem[0].offsetHeight;
        },
          function (newValue, oldValue) {
              if (newValue !== oldValue)
              {
                  // do some thing
              }
          });

        win.bind('resize', function () {
            scope.$apply();
        });
    };
于 2015-07-02T22:44:18.127 回答
4

这种方法避免(可能)触发reflow每个摘要循环。它只检查elem.height()/after/摘要周期结束,并且仅在高度发生变化时才导致新的摘要。

var DEBOUNCE_INTERVAL = 50; //play with this to get a balance of performance/responsiveness
var timer
scope.$watch(function() { timer = timer || $timeout(
    function() {
       timer = null;
       var h = elem.height();
       if (scope.height !== h) {
           scope.$apply(function() { scope.height = h })
       }
    },
    DEBOUNCE_INTERVAL,
    false
)
于 2015-08-07T18:19:59.740 回答
1

我编写了另一个可以绑定到范围的基于计时器的变体,因为正如 Jamie Pate 正确指出的那样,在摘要周期内直接访问 DOM 并不是一个好主意。

.directive("sizeWatcher", ['$timeout', function ($timeout) {
    return {
        scope: {
            sizeWatcherHeight: '=',
            sizeWatcherWidth: '=',
        },
        link: function( scope, elem, attrs ){
            function checkSize(){
                scope.sizeWatcherHeight = elem.prop('offsetHeight');
                scope.sizeWatcherWidth = elem.prop('clientWidth');
                $timeout( checkSize, 1000 );
            }
            checkSize();
        }
    };
}

现在您可以将它绑定到任何元素上:

<img size-watcher size-watcher-height="myheight">
<div style="height: {{ myheight }}px">

因此 div 始终保持(延迟一秒)与图像相同的高度。

于 2016-02-23T09:30:51.313 回答
0

这种方法监视元素的高度和宽度,并将其分配给元素属性上提供的范围内的变量

 <div el-size="size"></div>


.directive('elSize', ['$parse', function($parse) {
  return function(scope, elem, attrs) {
    var fn = $parse(attrs.elSize);

    scope.$watch(function() {
      return { width: elem.width(), height: elem.height() };
    }, function(size) {
      fn.assign(scope, size);
    }, true);

  }
}])
于 2014-08-22T19:56:36.743 回答