| | |
| | | line-height: 24px; |
| | | font-weight: bold; |
| | | transition: transform 0.3s ease; |
| | | background-color: #FF5722; |
| | | transform: scale(1.2); |
| | | } |
| | | .bus { |
| | | background-color: #2196F3; |
| | | border: 20px solid; |
| | | border-color: #2196F3; |
| | | position: absolute; |
| | | width: 24px; |
| | | height: 24px; |
| | |
| | | line-height: 24px; |
| | | font-weight: bold; |
| | | transition: transform 0.3s ease; |
| | | } |
| | | .station { |
| | | background-color: #FF5722; |
| | | transform: scale(1.2); |
| | | } |
| | | .bus { |
| | | background-color: #2196F3; |
| | | border: 20px solid #ffffff; |
| | | } |
| | | .station:hover, .bus:hover { |
| | | transform: scale(1.4); |
| | |
| | | <!-- <div class="station" style="top: 30%; left: 0;">6</div>--> |
| | | |
| | | <!-- Stations on inner ring --> |
| | | <!-- <div class="station" style="top: 5%; left: 50%;">7</div>--> |
| | | <div class="station" style="top: 0%; left: 0%;">500</div> |
| | | <!-- <div class="station" style="top: 25%; left: 80%;">8</div>--> |
| | | <!-- <div class="station" style="top: 75%; left: 80%;">9</div>--> |
| | | <!-- <div class="station" style="top: 95%; left: 50%;">10</div>--> |
| | | <!-- <div class="station" style="top: 75%; left: 20%;">11</div>--> |
| | | <!-- <div class="station" style="top: 25%; left: 20%;">12</div>--> |
| | | <div v-for="station in tableDataDev" class="station" :style="{ top: station.valueX + '%', left: station.valueY + '%' }">{{ station.index }}</div> |
| | | <!-- <div v-for="station in tableDataDev" class="station" :style="{ top: station.valueX + '%', left: station.valueY + '%' }">{{ station.index }}</div>--> |
| | | |
| | | |
| | | <!-- Buses --> |