Skip to content

Instantly share code, notes, and snippets.

View zabesangary's full-sized avatar

Zabe Sangary zabesangary

  • Picturae
  • Amsterdam
View GitHub Profile
@zabesangary
zabesangary / LICENSE
Last active August 29, 2015 14:27 — forked from ourmaninamsterdam/LICENSE
Arrayzing - The JavaScript array cheatsheet
The MIT License (MIT)
Copyright (c) 2015 Justin Perry
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
@zabesangary
zabesangary / index.html
Last active August 29, 2015 14:27 — forked from dariocravero/index.html
sideways animation
<!doctype html>
<html>
<body style='display: flex; flex-direction: row; width: 200vw; margin: 0; align-items: center; height: 100vh;'>
<div id=panel-1 style='background: red; width: 100vw; height: 100px; font-size: 3em; color:
white;'>1</div>
<div id=panel-2 style='background: blue; width: 100vw; height: 100px; font-size: 3em; color:
white;'>2</div>
<script src=sideways.js></script>
</body>
</html>
@zabesangary
zabesangary / main
Last active August 29, 2015 14:20 — forked from erikthinkful/main
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="js/app.js"></script>
</head>