1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!doctype html> <html> <head> <style> .anim { animation: anim 2s infinite linear } @keyframes anim { } </style> </head> <body> <script> var i = document.createElement('i'); i.setAttribute('class', 'anim'); getComputedStyle(i).display; </script> </body> </html>