当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript core.HostBinding函数代码示例

本文整理汇总了TypeScript中@angular/core.HostBinding函数的典型用法代码示例。如果您正苦于以下问题:TypeScript HostBinding函数的具体用法?TypeScript HostBinding怎么用?TypeScript HostBinding使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了HostBinding函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: hostClass

 @HostBinding('class.hc-list-item')
 get hostClass(): boolean {
     return true;
 }
开发者ID:cedar-ave,项目名称:Fabric.Cashmere,代码行数:4,代码来源:list-item.component.ts

示例2: isAriaDisabled

 @HostBinding('attr.aria-disabled')
 get isAriaDisabled(): string {
   return String(this.disabled);
 }
开发者ID:RicardoVaranda,项目名称:material2,代码行数:4,代码来源:menu-item.ts

示例3: getClass

 @HostBinding('class.custom-color') get getClass(){
   return true;
 }
开发者ID:harishfysx,项目名称:AngDashBoard2,代码行数:3,代码来源:color.directive.ts

示例4: isActive

 @HostBinding("class.active")
 @Input()
 public get isActive():boolean {
     return this._isActive;
 }
开发者ID:edcarroll,项目名称:ng2-semantic-ui,代码行数:5,代码来源:tab-header.ts

示例5: getGradient

 @HostBinding('style.backgroundImage') get getGradient(){
   return this.linearGradient;
 }
开发者ID:LuizVenarusso,项目名称:FollowupMaua,代码行数:3,代码来源:gradient.directive.ts

示例6: offsidebarOpen

 @HostBinding('class.offsidebar-open') get offsidebarOpen() { return this.settings.layout.offsidebarOpen; };
开发者ID:Yizongjishi,项目名称:osharp-ns20,代码行数:1,代码来源:layout.component.ts

示例7: isCollapsedText

 @HostBinding('class.aside-collapsed-text') get isCollapsedText() { return this.settings.layout.isCollapsedText; };
开发者ID:Yizongjishi,项目名称:osharp-ns20,代码行数:1,代码来源:layout.component.ts

示例8: isApp_SidebarRightOpen

	//App Right Sidebar Open/Close
	@HostBinding("class.sidebar-overlay-open")
	get isApp_SidebarRightOpen() {
		return this.config.appLayout.isApp_SidebarRightOpen;
	}
开发者ID:Kitsune-tools,项目名称:Ana-Agent-Panel,代码行数:5,代码来源:app.component.ts

示例9: disabled

 @HostBinding('attr.disabled')
 get disabled(): boolean {
     return this.innerDisabled;
 }
开发者ID:krozhkov,项目名称:right-angled,代码行数:4,代码来源:to-prev-page.ts

示例10: isApp_SidebarLeftCollapsed

	//App Left Sidebar Menu Open/Close Desktop
	@HostBinding("class.app_sidebar-menu-collapsed")
	get isApp_SidebarLeftCollapsed() {
		return this.config.appLayout.isApp_SidebarLeftCollapsed;
	}
开发者ID:Kitsune-tools,项目名称:Ana-Agent-Panel,代码行数:5,代码来源:app.component.ts

示例11: isApp_MobileSidebarLeftOpen

	//Left Menu Sidebar Open/Close Tablet & Mobile
	@HostBinding("class.app_sidebar-left-open")
	get isApp_MobileSidebarLeftOpen() {
		return this.config.appLayout.isApp_MobileSidebarLeftOpen;
	}
开发者ID:Kitsune-tools,项目名称:Ana-Agent-Panel,代码行数:5,代码来源:app.component.ts

示例12: tabindex

 @HostBinding('attr.tabindex')
 get tabindex() {
   return this.active ? 0 : -1;
 }
开发者ID:qcobber,项目名称:ng-lightning,代码行数:4,代码来源:tab-heading.ts

示例13: active

 @HostBinding('attr.aria-selected')
 get active() {
   return this.tab.active;
 }
开发者ID:qcobber,项目名称:ng-lightning,代码行数:4,代码来源:tab-heading.ts

示例14: innerHTML

 @HostBinding('innerHTML')
 get innerHTML() {
   return this.translatedValue;
 }
开发者ID:bullhorn,项目名称:novo-elements,代码行数:4,代码来源:translate.directive.ts

示例15: horizontal

 @HostBinding('class.layout-h') get horizontal() { return this.settings.layout.horizontal; };
开发者ID:Yizongjishi,项目名称:osharp-ns20,代码行数:1,代码来源:layout.component.ts


注:本文中的@angular/core.HostBinding函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。