blob: 9d70c918abd40d77d4aa6122af52e38ffb49fd30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
layout: post
title: "Keyframes Are Fun"
date: 2015-08-25
permalink: "/blog/keyframes-are-fun/"
author: Benjamin Sanders
catagories: 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
```css
@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.
|