Skip to content

Instantly share code, notes, and snippets.

View C-Rodg's full-sized avatar
👽

Curtis C-Rodg

👽
View GitHub Profile
@C-Rodg
C-Rodg / FindIdenticalNode.js
Created November 4, 2016 01:16
This algorithm displays how you can locate the same node in another identical DOM tree.
// Helper function to provide Array's indexOf method to DOM elements
function indexOf(arr, target) {
return Array.prototype.indexOf.call(arr, target);
}
// Get the path of the target node from Root A
function getPath(root, target) {
let current = target;
let path = [];
while(current !== root) {
@C-Rodg
C-Rodg / Material Action Button.markdown
Created July 13, 2016 19:26
Material Action Button

Material Action Button

A html/css material design action button to provide more options to a user

A Pen by C-Rodg on CodePen.

License.

React Tweetbox

A beginners React component for a twitter tweetbox. Handles logic for adding photos, character counts, and overflow alert.

A Pen by C-Rodg on CodePen.

License.

Netflix animations

Recreating Netflix's new css animations using opacity and transform.

A Pen by C-Rodg on CodePen.

License.

Flexbox Minesweeper

Old school minesweeper created with only HTML & CSS using Flexbox. Inspired by Landon Schropp.

A Pen by C-Rodg on CodePen.

License.

@C-Rodg
C-Rodg / Off-Screen Navigation.markdown
Created May 26, 2016 19:41
Off-Screen Navigation

Page load animation

A spinning page load animation. Great for the entry to welcome pages. Done completely with HTML & CSS. No javascript needed!

A Pen by C-Rodg on CodePen.

License.