1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 07:39:15 +03:00

initiaal 3d

This commit is contained in:
Anton Afanasyeu
2026-06-01 00:08:08 +02:00
parent 64891a832a
commit 2fc7997f94
4 changed files with 484 additions and 29 deletions

View File

@@ -26,20 +26,34 @@
z-index: 1;
}
.hub-logo-layer--globe {
z-index: 2;
/* Interactive globe canvas replaces globe + continents + gridOverlay when globe3d=1 */
.hub-globe-canvas {
position: fixed;
z-index: 3;
pointer-events: auto;
cursor: grab;
touch-action: none;
border-radius: 50%;
}
.hub-logo-layer--continents {
z-index: 3;
.hub-globe-canvas.is-dragging {
cursor: grabbing;
}
.hub-logo-layer--globe {
z-index: 2;
}
.hub-logo-layer--gridOverlay {
z-index: 4;
}
.hub-logo-layer--compass {
.hub-logo-layer--continents {
z-index: 5;
}
.hub-logo-layer--compass {
z-index: 6;
left: 54.7%;
top: 75.9%;
width: 11.5%;
@@ -69,3 +83,9 @@
[data-theme="light"] .hub-logo-stage {
opacity: 0.75;
}
@media (prefers-reduced-motion: reduce) {
.hub-globe-canvas {
cursor: default;
}
}