You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/packages/svelte/tests/css/samples/animations/input.svelte

28 lines
367 B

<h1>test</h1>
<style>
@keyframes a {
0% {
transform: scale(1);
}
100% {
transform: scale(2);
}
}
@keyframes animation {
0% {
transform: scale(1);
}
100% {
transform: scale(2);
}
}
h1 {
animation: 1s linear infinite a;
animation: a 1s linear infinite;
animation: 1s linear infinite a,animation 1s linear infinite;
}
</style>