Skip to content

Latest commit

 

History

History
134 lines (107 loc) · 3.43 KB

notes.md

File metadata and controls

134 lines (107 loc) · 3.43 KB

DEFINITE FONTS**

Super Fairytale Font(First letter):

font-family: 'UnifrakturMaguntia', cursive;

Goblin Font:

font-family: 'Over the Rainbow', cursive;

Whimsical Dark Font:

font-family: 'Griffy', cursive;

Whimsical Font:

font-family: 'Princess Sofia', cursive;

Body Font:

font-family: 'Fondamento', cursive;

BACKUP FONTS

Intro font:

font-family: 'Tangerine', cursive;

Scary Font:

font-family: 'Montez', cursive;

Twig Font:

font-family: 'Cabin Sketch', cursive;

Ending Font:

font-family: 'Cinzel Decorative', cursive;

Other Whimsical Font:

font-family: 'Spirax', cursive;

Light to Dark HEX Colors: #DDC994 #D2B569 #C1895A #8D5449 #3C2736

Light to Dark HEX Colors (green theme): #807269 #DED1A9 #ABB38F #809179 #618070

Light to Dark HEX Colors (blue/orange theme) #D6951C #8A9584 #C4BFA2 #173337 #B8391F

Jquery Effects:

http://api.jquery.com/animate/ animation docs

.fadeIn() for opening page $('#element').animate({width: 'toggle'}); to slide sideways

color change:

<style> .toggler { width: 500px; height: 200px; position: relative; } #button { padding: .5em 1em; text-decoration: none; } #effect { width: 240px; height: 170px; padding: 0.4em; position: relative; background: #fff; } #effect h3 { margin: 0; padding: 0.4em; text-align: center; } </style> <script> $( function() { var state = true; $( "#button" ).on( "click", function() { if ( state ) { $( "#effect" ).animate({ backgroundColor: "#aa0000", color: "#fff", width: 500 }, 1000 ); } else { $( "#effect" ).animate({ backgroundColor: "#fff", color: "#000", width: 240 }, 1000 ); } state = !state; }); } ); </script>

++++++++++++++++++++++++++++ https://api.jqueryui.com/color-animation/

<style> #elem { color: #006; background-color: #aaa; font-size: 25px; padding: 1em; text-align: center; } </style> <script> $( "#toggle" ).click(function() { $( "#elem" ).animate({ color: "green", backgroundColor: "rgb( 20, 20, 20 )" }); }); </script>

lightening effect https://codepen.io/Chrislion_me/pen/rVqwbO

fun with lightening https://codepen.io/akm2/pen/Aatbf

sparkley https://codepen.io/simeydotme/pen/jgcvi