From bb582e81cd98e8487ff61ec5d1b25ae09756d8c1 Mon Sep 17 00:00:00 2001 From: Stephen Kerr Date: Tue, 1 Nov 2022 14:41:43 +0100 Subject: [PATCH] animation team added animation.css --- css/animation.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 css/animation.css diff --git a/css/animation.css b/css/animation.css new file mode 100644 index 0000000..b41942d --- /dev/null +++ b/css/animation.css @@ -0,0 +1,13 @@ +#css animation that spins a class around forever# + +.spinny{ + animation: rotate 5s infinite; +} + +@keyframes rotate { + from { + transform: rotate(360deg); + } + to { + transform: rotate(-360deg); + }}