WebSite X5Help Center

 
Thomas S.
Thomas S.
User

Farbwechsel (invertieren) beim Scrollen, wie?  de

Autor: Thomas S.
Visited 229, Followers 1, Udostępniony 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

Posted on the
2 ODPOWIEDZI
Andreas S.
Andreas S.
Moderator
Najlepszy Użytkownik miesiąca DE

Du kannst dir das man ansehen.... LINK

Czytaj więcej
Posted on the from Andreas S.
Andreas S.
Andreas S.
Moderator
Najlepszy Użytkownik miesiąca 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;}
}

Czytaj więcej
Posted on the from Andreas S.