“CSS -Übergänge” Code-Antworten

So verwenden Sie den in CSS verbleibenden Übergang

nav:hover {
  left: 0;
  transition: 2s;
}
Anthony Smith

CSS -Übergänge

<input class = "spin" type="image" src="(IMAGE URL)" width="42" height="42" alt="a" title"Transform 360 deg. image!">

<style>
.spin:hover {
height: 60px;
width: 60px;
transition: .5s;
transform: rotate(360deg);
}
</style>

<!-- You can remove the height and width elements in the CSS style tag if you wish. -->
ayaan

CSS -Übergang

#content #nav a:hover {
    color: black;
    background-color: #AD310B;
    /* Firefox */
    -moz-transition: all 1s ease-in;
    /* WebKit */
    -webkit-transition: all 1s ease-in;
    /* Opera */
    -o-transition: all 1s ease-in;
    /* Standard */
    transition: all 1s ease-in;
}
Joyous Jackal

CSS -Transformationstransformation

.selector {
  transition: transform 1s;
}
TC5550

CSS -Übergänge

div {
  width: 100px;
  height: 100px;
  background: red;
  transition: width 2s;
}
naly moslih

CSS -Opazität Übergang

div {
  transition: opacity seconds;
}
Orion

Ähnliche Antworten wie “CSS -Übergänge”

Fragen ähnlich wie “CSS -Übergänge”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen