12 lines
198 B
HTML
12 lines
198 B
HTML
<style>
|
|
@keyframes anim {
|
|
from { color: red }
|
|
}
|
|
input {
|
|
animation: anim 1s;
|
|
}
|
|
</style>
|
|
<script>
|
|
input=document.createElement('input');
|
|
document.documentElement.appendChild(input);
|
|
</script>
|