WebSite X5Help Center

 
Thomas S.
Thomas S.
User

Farbwechsel (invertieren) beim Scrollen, wie?  de

Author: Thomas S.
Visited 235, Followers 1, Shared 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 ANSWERS
Andreas S.
Andreas S.
Moderator
Best User of the month DE

Du kannst dir das man ansehen.... LINK

Read more
Posted on the from Andreas S.
Andreas S.
Andreas S.
Moderator
Best User of the month 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;}
}

Read more
Posted on the from Andreas S.