/
tisit
/
FUXA_SCADA
Обзор
Документация
Войти
/
tisit
/
FUXA_SCADA
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
client/src/app/help/tutorial/tutorial.component.html
72 строки
3 KB
unocelli
editor keyboard shortcuts #398 #400
12 июн 2022, 22:01
12 июн 2022, 22:01
4c243df
Код
Авторство
О чём код?
<div class="tutorial-panel" *ngIf="show" ngDraggable> <style> pre { white-space: pre-line; } </style> <div class="tutorial-header"> <div class="tutorial-title"> {{'tutorial.title' | translate}} </div> <div class="tutorial-close" (click)="close()"> × </div> </div> <div class="tutorial-body"> <mat-accordion multi="true"> <mat-expansion-panel class="my-expansion-panel" expanded="true"> <mat-expansion-panel-header class="header" [collapsedHeight]="'40px'" [expandedHeight]="'40px'"> <mat-panel-title> {{ 'tutorial.editor-keyboard-shortcuts' | translate }} </mat-panel-title> <mat-panel-description> </mat-panel-description> </mat-expansion-panel-header> <div class="tutorial-content"> <ul> <li>Ctrl + Left / Right: rotate selected item</li> <li>Ctrl + Shift + Left / Right: rotate the selected item in big step</li> <li>Shift + O / P: select the prev / next item</li> <li>Tab / Shift + Tab: select the prev / next item</li> <li>Ctrl + Up / Down: central zoom in / out</li> <li>Ctrl + Z / Y: undo / redo</li> <li>Shift + 'resize with mouse the selected item': lock width and height</li> <li>Shift + Up / Down / Left / Right: move the selected item</li> <li>Shift + SCROLLER: zoom by mouse position</li> <li>Ctrl + A: select all item</li> <li>Ctrl + G: group or ungroup selected item</li> <li>Ctrl + D: duplicate selected item</li> <li>Shift + 'Draw line': line gradient horizonal, vertical 45° diagonal</li> <li>Ctrl + X: cut selected item</li> <li>Ctrl + C / V: copy / paste selected item</li> </ul> </div> </mat-expansion-panel> <!-- <mat-expansion-panel class="my-expansion-panel"> <mat-expansion-panel-header class="header" [collapsedHeight]="'40px'" [expandedHeight]="'40px'"> <mat-panel-title> Basic Layout </mat-panel-title> <mat-panel-description> </mat-panel-description> </mat-expansion-panel-header> Basic content </mat-expansion-panel> --> <!-- <mat-expansion-panel class="my-expansion-panel"> <mat-expansion-panel-header class="header" [collapsedHeight]="'40px'" [expandedHeight]="'40px'"> <mat-panel-title> Device </mat-panel-title> <mat-panel-description> </mat-panel-description> </mat-expansion-panel-header> Device content </mat-expansion-panel> --> </mat-accordion> </div> </div>