首頁 > web前端 > css教學 > 主體

AngularJS $watch 如何取代動態導航高度調整中的計時器?

Barbara Streisand
發布: 2024-11-02 11:06:30
原創
368 人瀏覽過

How Can AngularJS $watch Replace Timers in Dynamic Navigation Height Adjustment?

避免 AngularJS 的高度監視計時器

當導航高度是動態時,AngularJS 程式設計師經常面臨響應式導航的挑戰。這就導致需要根據導航高度的變化來調整內容的 margin-top 值。

以前,使用計時器來偵測導航高度的變化,但這種方法有缺點:使用計時器和調整內容的 margin-top 時出現延遲。

幸運的是,有更好的方法:利用 AngularJS 的 $watch 功能。在「emHeightSource」中註冊了一個觀察程序,而不是計時器,該觀察程序在每個 $digest 週期期間被呼叫。觀察者更新 '__height' 屬性。

在 'emHeightTarget' 中,另一個觀察者監視 '__height' 並相應更新 margin-top 值,確保內容的 margin-top 平滑變化並與導航同步高度。

這是使用觀察者的精煉程式碼:

/*
 * 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();
            } );
        }
    }

} )
登入後複製

以上是AngularJS $watch 如何取代動態導航高度調整中的計時器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!