From 9d7134ecc7edf998d3943cd55815384499c156aa Mon Sep 17 00:00:00 2001 From: Devon Bagley Date: Sun, 15 Sep 2019 19:53:01 -0700 Subject: [PATCH] re: #56 try a css hack to force GPU hardware acceleration for the .spin animation --- src/resources/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/resources/index.html b/src/resources/index.html index 5041bd2..a45ff0f 100644 --- a/src/resources/index.html +++ b/src/resources/index.html @@ -59,8 +59,12 @@ span.failed { color: firebrick; } span.aborted { color: indigo; } span.spin { + backface-visibility: hidden; + perspective: 1000; color: steelblue; + transform: translateZ(0); animation: 2s linear infinite spin; + will-change: transform; } @keyframes spin { to { transform: rotate(360deg); }