Thanks for your help.
I do this to have a fade.
in .css :
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
KeyFrames fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
animation-duration: 2s;
}
And in my xml:
class="fadeIn"
And it works
But being able to use it directly in Construct without having to do CSS and modify the xml would be great!