animation opacity css code example
Example 1: how to make animation stay on 100%
animation-fill-mode:forwards;
Example 2: css transition opacity
.myClass {
vertical-align: top;
transition: opacity 0.3s;
-webkit-transition: opacity 0.3s;
opacity: 1;
}
.myClass:hover {
opacity: 0.5;
}
Example 3: css opacity animation
<style>
.myelement{
animation: fade-out;
}
@keyframes fade-out{
0%{
opacity: 1.0
}
100{
opacity: 0.0
}
}
</style>
Example 4: css opacity example
.opacity30 {
opacity: 0.3;
filter: alpha(opacity=30);
}
Example 5: opacity animation css
<style>
.element-class {
opacity: 0.5;
transition: opacity 0.5s ease-in-out;
}
</style>