Skip to content

Instantly share code, notes, and snippets.

View andersbrohall's full-sized avatar

Anders Brohäll andersbrohall

View GitHub Profile
@andersbrohall
andersbrohall / gist:cbc91895930299a24980
Last active August 29, 2015 14:10
Button animated to loader in CSS3
<html>
<head>
<style>
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(359deg); }
}