blob: e534f77719c7d1ad21fa55a6c64dc726f4beb376 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<style>
@keyframes anim {
from { color: red }
}
input {
animation: anim 1s;
}
</style>
<script>
input=document.createElement('input');
document.documentElement.appendChild(input);
</script>
|