Skip to content

Instantly share code, notes, and snippets.

View omidgharib's full-sized avatar
🎯
Focusing

Omid Gharib omidgharib

🎯
Focusing
View GitHub Profile
@omidgharib
omidgharib / dabblet.css
Created December 25, 2013 11:57 — forked from LeaVerou/dabblet.css
Image interpolation demo
/* Image interpolation demo
WebKit-only at the time (April 2012)
*/
@keyframes browsers {
20% { background-image: url('http://lea.verou.me/css-4d/img/chrome-logo.png'); }
40% { background-image: url('http://lea.verou.me/css-4d/img/safari-logo.png'); }
60% { background-image: url('http://lea.verou.me/css-4d/img/opera-logo.png'); }
80% { background-image: url('http://lea.verou.me/css-4d/img/ie-logo.png'); }
}
These are useful WordPress functions
@omidgharib
omidgharib / index.html
Created January 28, 2013 11:27
A CodePen by <OMG. This is just a Calculator
<!--Simpe calc by <OMG[Github.com/omidgharib] -->
<body>
<div class="container">
<a id="OMG" href="http://www.github.com/omidgharib"> < OMG </a>
<div class="calc">
<form id='calc_form' action="">
<div class="pt1 mb1 lh4 row cover">
<input type="text" id='screen' placeholder='0'>
<button type='button' id='clear' onclick='clear_click();'> C </button>
</div>