Angular
Enterprise
./assets/drawing/angular-resources-libraries-dom.svg

Angular Lib: DOM

  • ngx-fullscreen is a simple Angular Directive that implements the browser Fullscreen API. ngx-fullscreen
  • resize-observer is a library for declarative use of Resize Observer API with Angular. It helps to easily observe and respond to changes in the size of an element’s content or border box in a performant way. resize-observer
  • intersection-observer is a library for declarative use of Intersection Observer API with Angular. It allows to register a callback function that is executed whenever an element they wish to monitor enters or exits another element (or the viewport). intersection-observer
  • mutation-observer is a library for declarative use of Mutation Observer API with Angular. It allows you to observe an element of the DOM and to be informed of its changes of attributes, for example, title, disabled, text... mutation-observer
  • ng-resize-observer is similar to the first library resize-observer above, however this one work is still not completed. ng-resize-observer
  • angular-resize-event is again a similar library that use the resize-observer in order to provides a directive for detecting changes of an element size. angular-resize-event
  • ngx-resize-observer is again similar to the first library. It also allows to monitor changes to DOM elements. ngx-resize-observer
  • ngx-mutation-observer is a bit different since it use Mutation Observer API to detect changes when the value or the properties change and consequently it will not detect changes when the window is resized if size is set in percentage (ex: width: 50%). ngx-mutation-observer
  • ngx-visibility is a library for monitoring the visibility of elements in the DOM. It uses Intersection Observer API in a more performant way compared to others libraries because it keeps the number of observers to a minimum. ngx-visibility
  • ng-in-viewport is a library similar to ngx-visibility since it also allows to check if an element is within the browsers visual viewport. ng-in-viewport
  • ng-dompurify is a library which extend the default Dom Sanitizer provided by Angular and include a DOM purifier feature in order to clean dirty HTML. ng-dompurify
  • ng-event-plugins is a tiny library for optimizing change detection cycles for performance sensitive HTML DOM events such as touchmove, scroll, drag... and also provides a declarative command for preventDefault() and stopPropagation(). ng-event-plugins
  • ng-click-outside is an Angular directive for handling click events outside of an element. ng-click-outside
  • ngx-favicon is an Angular service to dynamically update the favicon on an app. ngx-favicon
  • ngx-page-scroll is a small animated scrolling utility for Angular applications which allows you to trigger the scroll after loading, after navigation via the router or on click via a directive. ngx-page-scroll
  • ngx-scroll-to is library that provides a way to smooth scroll to any element on the page and thus enhance scroll-based features in your app. ngx-scroll-to
  • ngx-ui-scroll is a library that provides a very powerful Angular directive for unlimited bidirectional scrolling over limited viewport. ngx-ui-scroll
  • ng-motion is a library inspired by others frameworks aimed to solve the current limitation of the Angular animation module. Indeed this official module is not very ergonomic and thus often unused. ng-motion
  • ngx-pagevisibility is an Angular directive that implements the Page Visibility API. ngx-pagevisibility

Learn more about Angular

Complete list of angular utilities libraries .