Spinner für Schienen-Turborahmen, während die lange Aktion abgeschlossen istCSS

CSS verstehen
Anonymous
 Spinner für Schienen-Turborahmen, während die lange Aktion abgeschlossen ist

Post by Anonymous »

Ein Ansichtsblock innerhalb eines Turbo-Frame-Tags hat:
ein ID-Div

Code: Select all




[...]


Das folgende CSS läuft wie erwartet, da der beschäftigte-Block eine einzelne Blockreferenz ist:

Code: Select all

#loader {
position: relative;
}

#loader[busy]::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
display: flex;
align-items: center;
justify-content: center;

background-image: url("spinner-svgrepo-com.svg");
background-repeat: no-repeat;
background-position: center;
background-size: 50px 50px
}
Wie soll dies transformiert werden, wenn die relevanten Stilattribute durch mehrere Blöcke definiert werden?

Code: Select all

.loader {
position: absolute;
top: calc(50% - 32px);
left: calc(50% - 32px);
width: 64px;
height: 64px;
border-radius: 50%;
perspective: 800px;
}

.inner {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
border-radius: 50%;
}

.inner.one {
left: 0%;
top: 0%;
animation: rotate-one 1s linear infinite;
border-bottom: 3px solid #9ef8ee;
}

.inner.two {
right: 0%;
top: 0%;
animation: rotate-two 1s linear infinite;
border-right: 3px solid #ffae00;
}

.inner.three {
right: 0%;
bottom: 0%;
animation: rotate-three 1s linear infinite;
border-top: 3px solid #EFEFFA;
}

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post