當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript core.HostBinding函數代碼示例

本文整理匯總了TypeScript中angular2/core.HostBinding函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript HostBinding函數的具體用法?TypeScript HostBinding怎麽用?TypeScript HostBinding使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了HostBinding函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: isOpen

 @HostBinding('class.visible')
 @HostBinding('class.transition')
 public get isOpen():boolean {
     if (this._service) {
         return this._service.isOpen;
     }
     return;
 }
開發者ID:rapropos,項目名稱:ng2-semantic-ui,代碼行數:8,代碼來源:dropdown-menu.directive.ts

示例2: isDisabled

 @HostBinding('class.disabled')
 @Input()
 public get isDisabled():boolean {
     return this._service.isDisabled;
 }
開發者ID:rapropos,項目名稱:ng2-semantic-ui,代碼行數:5,代碼來源:dropdown.directive.ts

示例3: isOpen

 @HostBinding('class.visible')
 @Input()
 public get isOpen():boolean {
     return this._service.isOpen;
 }
開發者ID:rapropos,項目名稱:ng2-semantic-ui,代碼行數:5,代碼來源:dropdown.directive.ts

示例4: showOverlay

 @HostBinding('class.mui--overflow-hidden')
 get showOverlay(){
   return this.drawer.showOverlay;
 }
開發者ID:gdi2290,項目名稱:ng2-pokedex,代碼行數:4,代碼來源:app.ts

示例5: hideDrawer

 @HostBinding('class.hide-sidedrawer')
 get hideDrawer(){
   return this.drawer.hidden;
 }
開發者ID:gdi2290,項目名稱:ng2-pokedex,代碼行數:4,代碼來源:app.ts

示例6: setState

 @HostBinding('class.open') get setState() {
     return this.modalShow.show;
 }
開發者ID:michaelsdennis4,項目名稱:my_project_manager,代碼行數:3,代碼來源:modal.directive.ts

示例7: login

	@HostBinding('class.login-page') get login() { return this._location.path().indexOf('login') > -1 }
開發者ID:PeteOyable,項目名稱:lili,代碼行數:1,代碼來源:app.component.ts

示例8: isCompleted

 @HostBinding('class.done')
 private get isCompleted() {
     return this.todo.completed;
 }
開發者ID:mraszplewicz,項目名稱:angular2-redux-sample-app,代碼行數:4,代碼來源:todo.ts


注:本文中的angular2/core.HostBinding函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。