global-footer 全局页脚

页脚属于全局导航的一部分,作为对顶部导航的补充,通过传递数据控制展示内容。

  1. import { GlobalFooterModule } from '@delon/abc/global-footer';

代码演示

global-footer 全局页脚 - 图1

演示

基本页脚。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'components-global-footer-basic',
  4. template: `
  5. <div style="height: 280px;"></div>
  6. <global-footer [links]="links">
  7. Copyright<i nz-icon nzType="copyright" class="mx-sm"></i>2019<a href="//github.com/cipchk" target="_blank" class="mx-sm">卡色</a>出品
  8. </global-footer>
  9. `,
  10. styles: [ `:host { display: block; }` ]
  11. })
  12. export class ComponentsGlobalFooterBasicComponent {
  13. links = [
  14. {
  15. title: '帮助',
  16. href: 'https://ng-alain.com/',
  17. blankTarget: true
  18. },
  19. {
  20. title: 'Github',
  21. href: 'https://github.com/ng-alain',
  22. blankTarget: true
  23. },
  24. {
  25. title: '预览',
  26. href: 'https://ng-alain.surge.sh/',
  27. blankTarget: true
  28. }
  29. ];
  30. }

global-footer 全局页脚 - 图2

自定义

使用 global-footer-item 自定义图标。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'components-global-footer-custom',
  4. template: `
  5. <div style="height: 280px;"></div>
  6. <global-footer>
  7. <global-footer-item href="https://ng-alain.com/" blankTarget>帮助</global-footer-item>
  8. <global-footer-item href="https://github.com/ng-alain" blankTarget>
  9. <i nz-icon nzType="github"></i>
  10. </global-footer-item>
  11. <global-footer-item href="https://ng-alain.surge.sh/" blankTarget>预览</global-footer-item>
  12. Copyright<i nz-icon nzType="copyright" class="mx-sm"></i>2019<a href="//github.com/cipchk" target="_blank" class="mx-sm">卡色</a>出品
  13. </global-footer>
  14. `,
  15. styles: [ `:host { display: block; }` ]
  16. })
  17. export class ComponentsGlobalFooterCustomComponent {
  18. }

API

global-footer

参数说明类型默认值
[links]链接数据GlobalFooterLink-
[copyright]版权信息TemplateRef-

global-footer-item

参数说明类型默认值
ng-content标题string-
[href]路由链接string-
[blankTarget]是否打开新窗口booleanfalse

GlobalFooterLink

参数说明类型默认值
[title]标题string-
[href]路由链接string-
[blankTarget]是否打开新窗口booleanfalse