WebSite X5Help Center

 
Thomas S.
Thomas S.
User

Farbwechsel (invertieren) beim Scrollen, wie?  de

Autore: Thomas S.
Visite 238, Followers 1, Condiviso 0  

Hallo,

meine Seiten haben blaue Schrift auf weißem Grund. Ist es mit Website x5 möglich, dass dies beim Scrollen weich (!) wechselt zu weißer Schrift auf blauem Grund? Ähnich wie hier:

https://springsummer.dk

Viele Grüße 

Thomas

Postato il
2 RISPOSTE
Andreas S.
Andreas S.
Moderator
Utente del mese DE

Du kannst dir das man ansehen.... LINK

Leggi di più
Postato il da Andreas S.
Andreas S.
Andreas S.
Moderator
Utente del mese DE

Oder hier ein kleiner Code von mir erstellt!   In ein HTML-Objekt kopieren

<div id="myDIV">
<p>lorem ipsum</p>
</div>

Unter dem REiter "Erweitert" dann...

p {
font-family: monospace;
font-size: 3em;
animation: color-change 3s infinite;
}

@keyframes color-change {
0% { color: blue; }
50% { color: red; }
100% { color: blue; }
}
#myDIV {
width: 300px;
height: 200px;
display: table-cell;
vertical-align: middle;
background: red;
animation: mymove 3s infinite;
}

@keyframes mymove {
0% {background-color: red;}
50% {background-color: blue;}
}

Leggi di più
Postato il da Andreas S.