WebSite X5Help Center

 
Thomas S.
Thomas S.
User

Farbwechsel (invertieren) beim Scrollen, wie?  de

Auteur : Thomas S.
Visité 236, Followers 1, Partagé 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

Posté le
2 RéPONSES
Andreas S.
Andreas S.
Moderator
Meilleur utilisateur du mois DE

Du kannst dir das man ansehen.... LINK

Lire plus
Posté le de Andreas S.
Andreas S.
Andreas S.
Moderator
Meilleur utilisateur du mois 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;}
}

Lire plus
Posté le de Andreas S.