From a77bde84e2659d9df4899da8a5f31136372398cc Mon Sep 17 00:00:00 2001 From: Benjamin Sanders Date: Fri, 7 Feb 2025 07:33:31 -0500 Subject: initial commit --- _site/blog/keyframes-are-fun/index.html | 49 +++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 _site/blog/keyframes-are-fun/index.html (limited to '_site/blog/keyframes-are-fun/index.html') diff --git a/_site/blog/keyframes-are-fun/index.html b/_site/blog/keyframes-are-fun/index.html new file mode 100644 index 0000000..73ac796 --- /dev/null +++ b/_site/blog/keyframes-are-fun/index.html @@ -0,0 +1,49 @@ + + + + + + + + + + + + + Ben's Website + + + +
+ + + +

Keyframes Are Fun

+

Benjamin Sanders | 25 August 2015 | css,keyframes

+

Keyframes in HTML5 is fun. Well, I mean, coding is fun in general especially once you can get into “the zone” but the idea of making your website come alive is fun.

+ +

Key Frames

+ +
@keyframes fadein {
+from { opacity: 0; }
+to { opacity: 1; }
+}
+
+ +

I mean all I have to do is insert something like the above into my style.css document and it will make the class or id fade in on-load. Anyway that is just a quick update to what I’ve been doing with this site lately - I’ll keep you all posted as I design the site some more.

+ +
+ + + + + + -- cgit v1.2.3