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


TypeScript Content.resize方法代码示例

本文整理汇总了TypeScript中ionic-angular.Content.resize方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Content.resize方法的具体用法?TypeScript Content.resize怎么用?TypeScript Content.resize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ionic-angular.Content的用法示例。


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

示例1: setTimeout

      ).subscribe(([section, isFullscreen]) => {
        this.content.resize();

        // Hack to make it happen after resize is done
        setTimeout(() => {
          this.calculateOffset(section, isFullscreen);
        }, 0);
      });
开发者ID:bGraphic,项目名称:varsom-hybrid,代码行数:8,代码来源:overview.ts

示例2:

 (childNodes: TreeNode[]) => {
     this.folderItems = {};
     // we found all children of the node we're
     // traversing to (key)
     for (let i in childNodes) {
         let childNode: TreeNode = childNodes[i],
             childKey: number = childNode[DB_KEY_PATH];
         newFolderItems[childKey] = childNode;
     } // for
     this.folderNode = folderNode;
     this.folderItems = newFolderItems;
     // resize content, because a change in this.folderNode
     // can affect the header's visibility
     this.content.resize();
 },
开发者ID:zhu04303661,项目名称:ionic-recorder,代码行数:15,代码来源:library-page.ts

示例3: setElementPosition

 private setElementPosition(pixels: number) {
   this.elementRef.nativeElement.style.paddingBottom = pixels + 'px';
   this.content.resize();
 }
开发者ID:PoompisekK,项目名称:myWork,代码行数:4,代码来源:focus-input.directive.ts


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