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


TypeScript MatSidenav.open方法代码示例

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


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

示例1: swipe

    /**
     * Handle swipes and gestures
     */
    public swipe(e: TouchEvent, when: string): void {
        const coord: [number, number] = [e.changedTouches[0].pageX, e.changedTouches[0].pageY];
        const time = new Date().getTime();

        if (when === 'start') {
            this.swipeCoord = coord;
            this.swipeTime = time;
        } else if (when === 'end') {
            const direction = [coord[0] - this.swipeCoord[0], coord[1] - this.swipeCoord[1]];
            const duration = time - this.swipeTime;
            if (
                duration < 1000 &&
                Math.abs(direction[0]) > 30 && // swipe length to be detected
                Math.abs(direction[0]) > Math.abs(direction[1] * 3) // 30° should be "horizontal enough"
            ) {
                // definition of a "swipe right" gesture to move in the navigation
                // only works in the far left edge of the screen
                if (
                    direction[0] > 0 && // swipe left to right
                    this.swipeCoord[0] < 20
                ) {
                    this.sideNav.open();
                }

                // definition of a "swipe left" gesture to remove the navigation
                // should only work in mobile mode to prevent unwanted closing of the nav
                // works anywhere on the screen
                if (
                    direction[0] < 0 && // swipe left to right
                    this.vp.isMobile
                ) {
                    this.sideNav.close();
                }
            }
        }
    }
开发者ID:jwinzer,项目名称:OpenSlides,代码行数:39,代码来源:site.component.ts

示例2: open

 /**
  * Open this sidenav, and return a Promise that will resolve when it's fully opened (or get rejected if it didn't).
  *
  * @returns Promise<MatSidnavToggleResult>
  */
 public open(): Promise<MatDrawerToggleResult> {
   this.sidenav.open();
   
   return;
 }
开发者ID:idealhack,项目名称:gocryptotrader,代码行数:10,代码来源:sidebar.service.ts

示例3: open

 public open() {
   return this.sidenav.open();
 }
开发者ID:Dardym,项目名称:RepriseOrdi,代码行数:3,代码来源:sidenav.service.ts


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