Nightloewe
Neues Mitglied
Hallo, ich hätte es gerne das wenn ich auf den button submit sich langsam die farbe von hellblau auf dunkelblau ändert.
Genauso wie auf http://mc-hub.eu/login
Genauso wie auf http://mc-hub.eu/login
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Hallo, ich hätte es gerne das wenn ich auf den button submit sich langsam die farbe von hellblau auf dunkelblau ändert.
Genauso wie auf http://mc-hub.eu/login
das hab ich, aber das sieht nicht so gut aus
transition: background-position 0.1s linear;
-webkit-transition: all .35s ease;
-moz-transition: all .35s ease;
-ms-transition: all .35s ease;
-o-transition: all .35s ease;
transition: all .35s ease;
Hallo, ich hätte es gerne das wenn ich auf den button submit sich langsam die farbe von hellblau auf dunkelblau ändert.
Genauso wie auf http://mc-hub.eu/login
#button{
background-color: x;
transition:background-color 5s, transform 5s;
}
#button:hover
{
background-color: y
}