Skip to content

Instantly share code, notes, and snippets.

View deepakkj's full-sized avatar
🎯
Focusing

Deepak Kumar Jain deepakkj

🎯
Focusing
View GitHub Profile
@deepakkj
deepakkj / index.html
Last active March 10, 2016 17:31 — forked from anonymous/index.html
Bootstrap Multilevel Menu with hover// source http://jsbin.com/riyaba
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Bootstrap Multilevel Menu with hover</title>
<style id="jsbin-css">
@deepakkj
deepakkj / README.md
Created March 20, 2017 09:20 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@deepakkj
deepakkj / easing.js
Created September 19, 2018 06:15 — forked from gre/easing.js
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {
// no easing, no acceleration
linear: function (t) { return t },
// accelerating from zero velocity
easeInQuad: function (t) { return t*t },
// decelerating to zero velocity