mirror of https://github.com/sveltejs/svelte
parent
cd3bac9e5c
commit
fac05f3a07
@ -1,23 +1,24 @@
|
||||
|
||||
@keyframes svelte-xyz-a {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
@keyframes svelte-xyz-a {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes svelte-xyz-animation {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
h1.svelte-xyz {
|
||||
animation: 1s linear infinite svelte-xyz-a;
|
||||
animation: svelte-xyz-a 1s linear infinite;
|
||||
animation: 1s linear infinite svelte-xyz-a,svelte-xyz-animation 1s linear infinite;
|
||||
}
|
||||
@keyframes svelte-xyz-animation {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
|
||||
h1.svelte-xyz {
|
||||
animation: 1s linear infinite svelte-xyz-a;
|
||||
animation: svelte-xyz-a 1s linear infinite;
|
||||
animation: 1s linear infinite svelte-xyz-a,svelte-xyz-animation 1s linear infinite;
|
||||
}
|
||||
|
||||
@ -1,26 +1,27 @@
|
||||
<h1>test</h1>
|
||||
|
||||
<style>
|
||||
@keyframes a {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
@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;
|
||||
}
|
||||
@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>
|
||||
|
||||
Loading…
Reference in new issue