Skip to content

Instantly share code, notes, and snippets.

View ravenroc's full-sized avatar
🔗
Externally linked

Jeremy Paris ravenroc

🔗
Externally linked
View GitHub Profile
@ravenroc
ravenroc / object.create.js
Created May 17, 2016 12:15
Object.create() Backup function
if (typeof Object.create !== 'function') {
Object.create = function (o) {
function F() {}
F.prototype = o;
return new F();
};
}

Vacation Roulette

Practicing some Google Maps Javascript API by picking a random location and bringing you to it.

Code Brü entry for June 2015.

A Pen by Jeremy Paris on CodePen.

@ravenroc
ravenroc / Scrolling-Numbers.markdown
Created January 23, 2015 14:19
Scrolling Numbers
@ravenroc
ravenroc / Fun-with-Dropcap.JS.markdown
Last active November 4, 2019 15:30
Fun with Dropcap.JS
@ravenroc
ravenroc / Decepticon-Logo.markdown
Last active November 4, 2019 15:27
SVG Animation - Decepticon Logo
@ravenroc
ravenroc / Pure-CSS-Dynamic-Width-&-Height.markdown
Last active November 4, 2019 15:28
Pure CSS Dynamic Width & Height
@ravenroc
ravenroc / Random-Simpsons-Quote-[AngularJS].markdown
Last active November 4, 2019 15:30
Random Simpsons Quote [AngularJS]

Random Simpsons Quote [AngularJS]

I'm learning to use some AngularJS, so I made a Simpsons random quote generator. Refresh button spins on hover.

"I am so smart! I am so smart! S-M-R-T! I mean, S-M-A-R-T!" - Homer Simpson

A Pen by Jeremy Paris on CodePen.

License.

@ravenroc
ravenroc / Spinning-X-Loader.markdown
Last active November 4, 2019 15:31
Spinning-X Loader
@ravenroc
ravenroc / Transformers-Pallete-Swap.markdown
Last active November 4, 2019 15:29
Transformers Pallete Swap

Transformers Pallete Swap

I used SASS maps to create different color palletes that can be swapped out with Javascript by simply switching the body class. The colors used are based off of the famous Decepticons Seekers, such as Starscream, Skywarp, and Thundercracker. Each Seeker has the same body model, but have their own individual color schemes.

A Pen by Jeremy Paris on CodePen.

License.

@ravenroc
ravenroc / Hadouken!.markdown
Created May 22, 2014 21:05
A Pen by Jeremy Paris.

Hadouken!

All of the elements are animated via CSS. Javascript is used to swap animation classes and to add the fireballs to the stage.

A Pen by Jeremy Paris on CodePen.

License.