*ngIf hide some content on mobile screen, Angular 4

后端 未结 9 2070
盖世英雄少女心
盖世英雄少女心 2020-12-13 04:47

I have:

showHide: false;

Content
9条回答
  •  时光说笑
    2020-12-13 04:58

    In TS file:

      isMobile() {
        const width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
        return width < 768;
      }
    

    And in HTML template

    
    

提交回复
热议问题