Spaces:
Running
Running
File size: 3,276 Bytes
b4f9490 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
<template>
<div class="shortcuts-view">
<div class="shortcuts-header">
<h3>Raccourcis Clavier</h3>
</div>
<div class="shortcuts-content">
<div class="shortcuts-section">
<h4>Labellisation</h4>
<div class="shortcut-list">
<div class="shortcut-item">
<div class="shortcut-key">1</div>
<div class="shortcut-description">Player Team 1</div>
</div>
<div class="shortcut-item">
<div class="shortcut-key">2</div>
<div class="shortcut-description">Player Team 2</div>
</div>
<div class="shortcut-item">
<div class="shortcut-key">3</div>
<div class="shortcut-description">Ball</div>
</div>
</div>
</div>
<div class="shortcuts-section">
<h4>Objets</h4>
<div class="shortcut-list">
<div class="shortcut-item">
<div class="shortcut-key">N</div>
<div class="shortcut-description">Créer un nouvel objet</div>
</div>
<div class="shortcut-item">
<div class="shortcut-key">Ctrl + Suppr</div>
<div class="shortcut-description">Supprimer l'objet sélectionné</div>
</div>
</div>
</div>
<div class="shortcuts-section">
<h4>Navigation</h4>
<div class="shortcut-list">
<div class="shortcut-item">
<div class="shortcut-key">Espace</div>
<div class="shortcut-description">Lecture/Pause vidéo</div>
</div>
<div class="shortcut-item">
<div class="shortcut-key">←/→</div>
<div class="shortcut-description">Avancer/Reculer dans la vidéo</div>
</div>
<div class="shortcut-item">
<div class="shortcut-key">Échap</div>
<div class="shortcut-description">Fermer les popups</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'ShortcutsView'
}
</script>
<style scoped>
.shortcuts-view {
height: 100%;
padding: 16px;
color: white;
overflow-y: auto;
}
.shortcuts-header {
margin-bottom: 20px;
text-align: center;
}
.shortcuts-header h3 {
margin: 0;
font-size: 1.2rem;
color: #fff;
}
.shortcuts-content {
display: flex;
flex-direction: column;
gap: 24px;
}
.shortcuts-section h4 {
margin: 0 0 12px 0;
font-size: 1rem;
border-bottom: 1px solid #4a4a4a;
padding-bottom: 4px;
}
.shortcut-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.shortcut-item {
display: flex;
align-items: center;
gap: 12px;
padding: 8px 12px;
background: #3c3c3c;
border-radius: 6px;
transition: background 0.2s;
}
.shortcut-item:hover {
background: #4a4a4a;
}
.shortcut-key {
background: #555;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-size: 0.8rem;
font-weight: bold;
min-width: 60px;
text-align: center;
border: 1px solid #666;
}
.shortcut-description {
flex: 1;
color: #e2e8f0;
font-size: 0.9rem;
}
</style> |