Anvendelse af kodeblok til animation i LESS
Lad os lave en funktion, der definerer nøglebillederne i animationen:
.keyframes(@name, @code) {
@keyframes @name {@code();}
}
Lad os bruge vores funktion:
.keyframes(anim, {
from {
width: 100px;
}
to {
width: 200px;
}
});
Kompileringsresultat:
@keyframes anim {
from {
width: 100px;
}
to {
width: 200px;
}
}