diff --git a/htdocs/openwebrx.css b/htdocs/openwebrx.css index 97127c2..7e23f9e 100644 --- a/htdocs/openwebrx.css +++ b/htdocs/openwebrx.css @@ -848,10 +848,15 @@ img.openwebrx-mirror-img #openwebrx-cursor-blink { animation: cursor-blink 1s infinite; + /*animation: cursor-3d 2s infinite;*/ + animation-timing-function: linear; + animation-direction: alternate; height: 1em; width: 8px; background-color: White; display: inline-block; + /*perspective: 60px;*/ + } @keyframes cursor-blink @@ -861,4 +866,11 @@ img.openwebrx-mirror-img 100%{ opacity: 0; } } +@keyframes cursor-3d +{ + 0%{ transform: rotateX(0deg) rotateX(Ydeg); } + 50% { transform: rotateX(180deg) rotateY(360deg); opacity: 0.1; } + 100%{ transform: rotateX(360deg) rotateY(720deg); } +} +